結果

問題 No.430 文字列検索
ユーザー tentententen
提出日時 2021-11-11 16:55:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 2,141 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 78,488 KB
実行使用メモリ 73,504 KB
最終ジャッジ日時 2024-11-10 00:58:10
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,628 KB
testcase_01 AC 366 ms
73,504 KB
testcase_02 AC 166 ms
48,852 KB
testcase_03 AC 186 ms
49,432 KB
testcase_04 AC 46 ms
36,796 KB
testcase_05 AC 45 ms
36,692 KB
testcase_06 AC 46 ms
36,460 KB
testcase_07 AC 45 ms
36,580 KB
testcase_08 AC 320 ms
72,652 KB
testcase_09 AC 48 ms
36,808 KB
testcase_10 AC 112 ms
44,904 KB
testcase_11 AC 258 ms
53,272 KB
testcase_12 AC 258 ms
53,500 KB
testcase_13 AC 261 ms
52,788 KB
testcase_14 AC 251 ms
51,432 KB
testcase_15 AC 218 ms
50,868 KB
testcase_16 AC 188 ms
49,696 KB
testcase_17 AC 221 ms
49,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] value = sc.next().toCharArray();
        int length = value.length;
        long[][] hashes = new long[10][length];
        ArrayList<HashMap<Long, Integer>> counts = new ArrayList<>();
        for (int i = 0; i < 10; i++) {
            counts.add(new HashMap<>());
        }
        for (int i = 0; i < length; i++) {
            hashes[0][i] = value[i] - 'A';
            counts.get(0).put(hashes[0][i], counts.get(0).getOrDefault(hashes[0][i], 0) + 1);
        }
        for (int i = 1; i < 10; i++) {
            for (int j = 0; j < length - i; j++) {
                hashes[i][j] = hashes[i - 1][j] * 26 + hashes[0][j + i];
                counts.get(i).put(hashes[i][j], counts.get(i).getOrDefault(hashes[i][j], 0) + 1);
            }
        }
        int m = sc.nextInt();
        int ans = 0;
        for (int i = 0; i < m; i++) {
            String s = sc.next();
            ans += counts.get(s.length() - 1).getOrDefault(getHash(s), 0);
        }
        System.out.println(ans);
    }
    
    static long getHash(String s) {
        long hash = 0;
        for (char c : s.toCharArray()) {
            hash *= 26;
            hash += c - 'A';
        }
        return hash;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0