Skip to content

Instantly share code, notes, and snippets.

@phaniram
Created January 3, 2012 10:32
Show Gist options
  • Select an option

  • Save phaniram/1554396 to your computer and use it in GitHub Desktop.

Select an option

Save phaniram/1554396 to your computer and use it in GitHub Desktop.
Interview Street Challenges - Find Strings
package com.interviewstreet.puzzles;
import java.util.ArrayList;
import java.util.Scanner;
import java.util.TreeSet;
public class find_str {
private static final String INVALID = "INVALID";
private TreeSet<String> mainset = new TreeSet<String>();
private ArrayList<String> array = new ArrayList<String>();
private String[] main_ary;
private int length;
public static void main(String args[]) {
long start=System.currentTimeMillis();
find_str fin = new find_str();
System.out.println(System.currentTimeMillis()-start);
Scanner scanner = new Scanner(System.in);
int num_of_strings = scanner.nextInt();
long pr=System.currentTimeMillis();
for (int i = num_of_strings; --i >=0;) {
fin.process(scanner.next());
}
System.out.println("pr took "+(System.currentTimeMillis()-pr));
long in=System.currentTimeMillis();
fin.initialize();
System.out.println("in took "+(System.currentTimeMillis()-in));
int num_of_queries = scanner.nextInt();
int length=fin.length;
long qu=System.currentTimeMillis();
for (int i = num_of_queries; --i >=0;) {
int index=scanner.nextInt()-1;
if(index<length)
{
System.out.println(fin.query(index));
}
else
{
System.out.println(INVALID);
}
}
System.out.println("qu took "+(System.currentTimeMillis()-qu));
}
private String query(int index) {
return main_ary[index];
// return array.get(index);
}
private void process(String input) {
int len = input.length();
for (int i = 0; i < len; i++) {
for (int j = i; j < len; j++) {
mainset.add(input.substring(i, j + 1));
}
}
}
private void initialize() {
length=mainset.size();
main_ary=(String[]) mainset.toArray(new String[length]);
// array.addAll(mainset);
}
}
@thequark
Copy link

I had the same solution. While testing I get time limit exceeded and 3 out of 7 test cases passed. What was your result?

@phaniram
Copy link
Author

ya, same problem here, donno what to do, lot of my answers gets same time-out errors.

@thequark
Copy link

I think these challenge questions might need more than the usual data structures. Someone at a forum had suggested using suffix tree for this problem.

@kartup
Copy link

kartup commented Feb 21, 2012

This problem failed, did you add get optimal solution?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment