結果

問題 No.430 文字列検索
ユーザー rpy3cpprpy3cpp
提出日時 2016-10-07 23:36:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-11-10 00:09:56
合計ジャッジ時間 1,994 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 109 ms
11,520 KB
testcase_02 AC 104 ms
11,904 KB
testcase_03 AC 103 ms
11,904 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 85 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 107 ms
11,520 KB
testcase_12 AC 103 ms
11,904 KB
testcase_13 AC 106 ms
11,904 KB
testcase_14 AC 105 ms
12,032 KB
testcase_15 AC 105 ms
11,904 KB
testcase_16 AC 107 ms
11,904 KB
testcase_17 AC 106 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    S = input()
    M = int(input())
    Cs = [input() for _ in range(M)]
    return S, M, Cs

def solve(S, M, Cs):
    base = ord('A') - 1
    mask10 = (1 << 50) - 1
    mask = init_mask(10)
    pool = init_pool(Cs)
    count = 0
    val = 0
    for c in S:
        val = ((val << 5) + ord(c) - base) & mask10
        for i in range(10):
            if (val & mask[i]) in pool[i]:
                count += 1
    return count

def init_mask(n):
    mask = []
    for i in range(1, n + 1):
        mask.append((1 << (5 * i)) - 1)
    return mask

def init_pool(Cs):
    base = ord('A') - 1
    pool = [set() for _ in range(10)]
    for C in Cs:
        val = 0
        for c in C:
            val = (val << 5) + ord(c) - base
        pool[len(C) - 1].add(val)
    return pool

S, M, Cs = read_data()
print(solve(S, M, Cs))
0