結果

問題 No.430 文字列検索
ユーザー tentententen
提出日時 2023-01-27 20:05:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 2,622 bytes
コンパイル時間 3,370 ms
コンパイル使用メモリ 95,736 KB
実行使用メモリ 75,176 KB
最終ジャッジ日時 2024-11-10 01:05:08
合計ジャッジ時間 6,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,212 KB
testcase_01 AC 395 ms
75,176 KB
testcase_02 AC 180 ms
50,732 KB
testcase_03 AC 198 ms
51,328 KB
testcase_04 AC 49 ms
36,932 KB
testcase_05 AC 48 ms
37,176 KB
testcase_06 AC 47 ms
37,144 KB
testcase_07 AC 49 ms
37,368 KB
testcase_08 AC 348 ms
74,240 KB
testcase_09 AC 50 ms
36,820 KB
testcase_10 AC 113 ms
45,628 KB
testcase_11 AC 262 ms
54,536 KB
testcase_12 AC 268 ms
54,040 KB
testcase_13 AC 265 ms
54,344 KB
testcase_14 AC 256 ms
53,672 KB
testcase_15 AC 221 ms
52,164 KB
testcase_16 AC 205 ms
51,628 KB
testcase_17 AC 233 ms
51,388 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[] inputs = sc.next().toCharArray();
        long[][] hashes = new long[inputs.length][10];
        ArrayList<HashMap<Long, Integer>> counts = new ArrayList<>();
        counts.add(new HashMap<>());
        for (int i = 0; i < inputs.length; i++) {
            hashes[i][0] = inputs[i] - 'A';
            counts.get(0).put(hashes[i][0], counts.get(0).getOrDefault(hashes[i][0], 0) + 1);
        }
        for (int i = 1; i < 10; i++) {
            counts.add(new HashMap<>());
            for (int j = 0; j < inputs.length - i; j++) {
                hashes[j][i] = hashes[j][i - 1] * 26 + hashes[j + i][0];
                counts.get(i).put(hashes[j][i], counts.get(i).getOrDefault(hashes[j][i], 0) + 1);
            }
        }
        int n = sc.nextInt();
        int ans = 0;
        while (n-- > 0) {
            char[] target = sc.next().toCharArray();
            long h = getHash(target);
            ans += counts.get(target.length - 1).getOrDefault(h, 0);
        }
        System.out.println(ans);
    }
    
    static long getHash(char[] arr) {
        long hash = 0;
        for (char c : arr) {
            hash *= 26;
            hash += c - 'A';
        }
        return hash;
    }
}

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