結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 👑 KazunKazun
提出日時 2022-09-10 03:32:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,370 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 123,364 KB
最終ジャッジ日時 2024-06-26 13:03:02
合計ジャッジ時間 21,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 46 ms
54,272 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 183 ms
88,468 KB
testcase_09 WA -
testcase_10 AC 196 ms
91,444 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 243 ms
96,656 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 155 ms
108,952 KB
testcase_53 AC 154 ms
109,340 KB
testcase_54 AC 156 ms
109,280 KB
testcase_55 WA -
testcase_56 AC 133 ms
82,816 KB
testcase_57 WA -
testcase_58 AC 144 ms
97,844 KB
testcase_59 AC 352 ms
123,364 KB
testcase_60 AC 178 ms
88,492 KB
testcase_61 WA -
testcase_62 AC 88 ms
77,696 KB
testcase_63 AC 176 ms
89,344 KB
testcase_64 AC 189 ms
88,960 KB
testcase_65 AC 191 ms
89,088 KB
testcase_66 AC 135 ms
83,072 KB
testcase_67 AC 275 ms
102,752 KB
testcase_68 AC 121 ms
82,944 KB
testcase_69 AC 280 ms
102,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# WA 想定 (1個の素数に対する法しか取っていないため)

class Hasher():
    def __init__(self, length, base, mod):
        self.length=length
        self.base=base
        self.mod=mod

        self.power=pw=[1]*length
        for i in range(1,length):
            pw[i]=(base*pw[i-1])%mod

    def __repr__(self):
        return "length: {}\nbase: {}\nmod: {}".format(self.length, self.base, self.mod)

    def encode(self, S):
        code=0; N=len(S)
        for i in range(N):
            #code+=ord(S[i])*self.power[N-1-i]%self.mod
            code+=S[i]*self.power[N-1-i]%self.mod

        return code%self.mod

    def decode(self, S):
        pass
#==================================================
from random import randint
import sys
input=sys.stdin.readline
write=sys.stdout.write

N=int(input())

S=[""]*N
L=0
for i in range(N):
    S[i]=[ord(a)-ord("a")+1 for a in input()[:-1]]
    L=max(L,len(S[i]))

p=10**9+7; beta=randint(2,p-1); H=Hasher(L, beta, p)

B=[1]*L; Bq=[1]*L

for j in range(1,L):
    B[j]=B[j-1]*beta %p

for j in range(L):
    B[j]*=beta-1 ; B[j]%=p

E=set()
Ans=["No"]*N
for i in range(N):
    h=H.encode(S[i])

    if h in E:
        Ans[i]="Yes"

    for j in range(len(S[i])-1):
        k=(h+B[len(S[i])-j-2]*(S[i][j+1]-S[i][j]))%p

        if k in E:
            Ans[i]="Yes"

    E.add(h)

write("\n".join(Ans))
0