結果

問題 No.430 文字列検索
ユーザー mkawa2mkawa2
提出日時 2020-04-23 01:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-11-10 00:43:28
合計ジャッジ時間 7,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 672 ms
80,896 KB
testcase_02 AC 651 ms
80,640 KB
testcase_03 AC 650 ms
80,640 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 57 ms
65,408 KB
testcase_09 AC 48 ms
58,624 KB
testcase_10 AC 54 ms
60,544 KB
testcase_11 AC 655 ms
80,896 KB
testcase_12 AC 654 ms
80,768 KB
testcase_13 AC 653 ms
80,384 KB
testcase_14 AC 651 ms
80,512 KB
testcase_15 AC 651 ms
81,024 KB
testcase_16 AC 649 ms
80,640 KB
testcase_17 AC 654 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def II(): return int(sys.stdin.readline())
def SI(): return sys.stdin.readline()[:-1]

def main():
    def hash(aa):
        res = 0
        base=1
        for a in aa[::-1]:
            res += a*base
            base*=26
        return res


    s=SI()
    s=[ord(c)-65 for c in s]
    sn=len(s)
    memo=[[-1]*sn for _ in range(11)]
    ans=0
    for _ in range(II()):
        t=SI()
        t = [ord(c) - 65 for c in t]
        tn=len(t)
        ht=hash(t)
        memotn = memo[tn]
        if memotn[0]!=-1:
            memotn=memo[tn]
            for i in range(sn - tn + 1):
                if memotn[i]==ht:ans+=1
        else:
            hs=hash(s[:tn])
            mxd=pow(26,tn-1)
            for i in range(sn - tn + 1):
                if i:hs=(hs-mxd*s[i-1])*26+s[i+tn-1]
                if hs==ht:ans+=1
                memotn[i]=hs

    print(ans)

main()
0