結果

問題 No.430 文字列検索
ユーザー tentententen
提出日時 2023-01-27 20:05:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 2,622 bytes
コンパイル時間 3,123 ms
コンパイル使用メモリ 81,328 KB
実行使用メモリ 87,908 KB
最終ジャッジ日時 2023-09-10 13:59:28
合計ジャッジ時間 7,655 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,324 KB
testcase_01 AC 471 ms
87,908 KB
testcase_02 AC 199 ms
61,064 KB
testcase_03 AC 228 ms
61,692 KB
testcase_04 AC 44 ms
49,200 KB
testcase_05 AC 45 ms
49,684 KB
testcase_06 AC 45 ms
49,736 KB
testcase_07 AC 45 ms
49,320 KB
testcase_08 AC 368 ms
85,124 KB
testcase_09 AC 47 ms
49,320 KB
testcase_10 AC 115 ms
56,896 KB
testcase_11 AC 296 ms
63,904 KB
testcase_12 AC 289 ms
64,140 KB
testcase_13 AC 295 ms
64,020 KB
testcase_14 AC 287 ms
64,444 KB
testcase_15 AC 253 ms
61,872 KB
testcase_16 AC 238 ms
61,500 KB
testcase_17 AC 241 ms
61,700 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