結果

問題 No.430 文字列検索
ユーザー tentententen
提出日時 2023-04-05 18:57:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 2,619 bytes
コンパイル時間 2,675 ms
コンパイル使用メモリ 98,560 KB
実行使用メモリ 74,068 KB
最終ジャッジ日時 2024-11-10 01:06:12
合計ジャッジ時間 6,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,768 KB
testcase_01 AC 370 ms
74,068 KB
testcase_02 AC 166 ms
49,208 KB
testcase_03 AC 200 ms
49,912 KB
testcase_04 AC 46 ms
36,888 KB
testcase_05 AC 43 ms
37,028 KB
testcase_06 AC 45 ms
36,668 KB
testcase_07 AC 44 ms
36,908 KB
testcase_08 AC 328 ms
72,812 KB
testcase_09 AC 47 ms
36,768 KB
testcase_10 AC 109 ms
44,836 KB
testcase_11 AC 252 ms
53,604 KB
testcase_12 AC 253 ms
53,796 KB
testcase_13 AC 256 ms
53,336 KB
testcase_14 AC 245 ms
52,032 KB
testcase_15 AC 217 ms
51,304 KB
testcase_16 AC 198 ms
49,984 KB
testcase_17 AC 206 ms
50,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] s = sc.next().toCharArray();
        int length = s.length;
        long[][] hashes = new long[10][length];
        ArrayList<HashMap<Long, Integer>> counts = new ArrayList<>();
        counts.add(new HashMap<>());
        for (int i = 0; i < length; i++) {
            hashes[0][i] = s[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++) {
            counts.add(new HashMap<>());
            for (int j = 0; j + i < length; 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();
        long ans = 0;
        while (m-- > 0) {
            char[] inputs = sc.next().toCharArray();
            long h = getHash(inputs);
            ans += counts.get(inputs.length - 1).getOrDefault(h, 0);
        }
        System.out.println(ans);
    }
    
    static long getHash(char[] arr) {
        long ans = 0;
        for (char c : arr) {
            ans *= 26;
            ans += c - 'A';
        }
        return ans;
    }

}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0