結果

問題 No.430 文字列検索
ユーザー hermione17hermione17
提出日時 2016-10-03 00:11:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 1,157 bytes
コンパイル時間 3,695 ms
コンパイル使用メモリ 79,860 KB
実行使用メモリ 78,696 KB
最終ジャッジ日時 2024-11-10 00:06:29
合計ジャッジ時間 12,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,288 KB
testcase_01 AC 806 ms
73,508 KB
testcase_02 AC 469 ms
48,288 KB
testcase_03 AC 489 ms
49,036 KB
testcase_04 AC 136 ms
41,512 KB
testcase_05 AC 138 ms
41,668 KB
testcase_06 AC 137 ms
41,648 KB
testcase_07 AC 136 ms
41,308 KB
testcase_08 AC 712 ms
78,696 KB
testcase_09 AC 147 ms
41,428 KB
testcase_10 AC 217 ms
46,840 KB
testcase_11 AC 560 ms
52,776 KB
testcase_12 AC 580 ms
52,920 KB
testcase_13 AC 585 ms
52,464 KB
testcase_14 AC 549 ms
50,812 KB
testcase_15 AC 519 ms
50,172 KB
testcase_16 AC 457 ms
48,644 KB
testcase_17 AC 490 ms
48,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.HashMap;
import java.util.Scanner;


public class Y430 {
	Y430() throws Exception {
		Scanner in = new Scanner(System.in);
		PrintStream out = new PrintStream(System.out);
		
		String s = in.next();
		int m = in.nextInt();
		String[] w = new String[m];
		
		for (int i = 0; i < m; i++) {
			w[i] = in.next();
		}
		
		HashMap<Long, Integer>[] hashMap = new HashMap[11];
		
		for (int i = 0; i < 11; i++) {
			hashMap[i] = new HashMap();			
		}
		
		for (int i = 0; i < s.length(); i++) {
			for (int j = 1; j <= 10 && i + j <= s.length(); j++) {
				Long x = encode(s.substring(i,  i+j));
				Integer g = hashMap[j].get(x);
				
				if (g == null) g = 0;
				g += 1;
				hashMap[j].put(x, g);
			}
		}
		
		int answer = 0;
		for (int i = 0; i < m; i++) {
			Long x = encode(w[i]);
			Integer g = hashMap[w[i].length()].get(x);
			if (g != null) answer += g;
		}

		
		out.println(answer);
	}
	
	long encode(String s) {
		long x = 0;
		for (int i = 0; i < s.length(); i++) {
			x = x * 26 + (int)s.charAt(i) - 'A';
		}
		return x;
	}

	public static void main(String argv[]) throws Exception {
		new Y430();
	}
}
0