結果

問題 No.430 文字列検索
ユーザー mkawa2mkawa2
提出日時 2020-04-23 01:21:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 883 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,072 KB
最終ジャッジ日時 2024-11-10 00:43:22
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,000 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

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