結果

問題 No.430 文字列検索
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-14 15:25:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,173 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 121,968 KB
最終ジャッジ日時 2024-11-10 01:12:08
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 187 ms
121,968 KB
testcase_02 AC 106 ms
77,112 KB
testcase_03 AC 105 ms
77,124 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 33 ms
52,096 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 164 ms
114,628 KB
testcase_09 AC 39 ms
58,752 KB
testcase_10 AC 58 ms
73,216 KB
testcase_11 AC 130 ms
86,760 KB
testcase_12 AC 129 ms
86,528 KB
testcase_13 AC 127 ms
86,740 KB
testcase_14 AC 123 ms
81,408 KB
testcase_15 AC 119 ms
79,360 KB
testcase_16 AC 109 ms
77,184 KB
testcase_17 AC 102 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1160

B = 30
H = 9007199254740997

def main():
    S = input()
    M = int(input())
    C = []
    for _ in range(M):
        C.append(input())

    # Sについてローリングハッシュを計算
    r_hash_list = [0 for _ in range(len(S) + 1)]
    r_hash = 0
    for i in  range(len(S)):
        r_hash *= B
        r_hash %= H
        r_hash += ord(S[i]) - ord("A") + 1
        r_hash %= H
        r_hash_list[i + 1] = r_hash
    
    # 
    hash_map = {}
    pow_b = 1
    for l in range(1, min(10, len(S)) + 1):
        pow_b *= B
        pow_b %= H
        for i in range(len(S) - l + 1):
            h = (r_hash_list[i] * pow_b) % H
            h = (r_hash_list[i + l] - h) % H
            if h not in hash_map:
                hash_map[h] = 0
            hash_map[h] += 1
    
    answer = 0
    for c in C:
        c_hash = 0
        for i in range(len(c)):
            c_hash *= B
            c_hash %= H
            c_hash += ord(c[i]) - ord("A") + 1
            c_hash %= H
        
        if c_hash in hash_map:
            answer += hash_map[c_hash]
    print(answer)



        

if __name__ == "__main__":
    main()
0