結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 👑 KazunKazun
提出日時 2022-07-26 21:03:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 480 ms / 3,000 ms
コード長 1,616 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 127,564 KB
最終ジャッジ日時 2024-06-26 12:55:16
合計ジャッジ時間 26,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,144 KB
testcase_01 AC 45 ms
54,400 KB
testcase_02 AC 310 ms
104,992 KB
testcase_03 AC 343 ms
109,392 KB
testcase_04 AC 337 ms
105,632 KB
testcase_05 AC 290 ms
100,120 KB
testcase_06 AC 347 ms
108,264 KB
testcase_07 AC 232 ms
92,384 KB
testcase_08 AC 203 ms
88,664 KB
testcase_09 AC 286 ms
101,880 KB
testcase_10 AC 230 ms
93,052 KB
testcase_11 AC 183 ms
87,432 KB
testcase_12 AC 285 ms
99,072 KB
testcase_13 AC 351 ms
109,068 KB
testcase_14 AC 309 ms
102,724 KB
testcase_15 AC 374 ms
111,328 KB
testcase_16 AC 423 ms
121,308 KB
testcase_17 AC 184 ms
88,064 KB
testcase_18 AC 263 ms
98,704 KB
testcase_19 AC 245 ms
95,912 KB
testcase_20 AC 370 ms
112,696 KB
testcase_21 AC 264 ms
95,932 KB
testcase_22 AC 453 ms
123,392 KB
testcase_23 AC 454 ms
121,996 KB
testcase_24 AC 437 ms
123,376 KB
testcase_25 AC 455 ms
122,364 KB
testcase_26 AC 441 ms
123,400 KB
testcase_27 AC 447 ms
123,268 KB
testcase_28 AC 452 ms
123,508 KB
testcase_29 AC 444 ms
123,260 KB
testcase_30 AC 465 ms
123,004 KB
testcase_31 AC 480 ms
121,772 KB
testcase_32 AC 464 ms
124,408 KB
testcase_33 AC 457 ms
122,124 KB
testcase_34 AC 457 ms
123,140 KB
testcase_35 AC 455 ms
123,388 KB
testcase_36 AC 451 ms
122,228 KB
testcase_37 AC 463 ms
123,008 KB
testcase_38 AC 442 ms
123,000 KB
testcase_39 AC 451 ms
123,496 KB
testcase_40 AC 444 ms
122,876 KB
testcase_41 AC 465 ms
124,364 KB
testcase_42 AC 306 ms
103,588 KB
testcase_43 AC 297 ms
104,224 KB
testcase_44 AC 299 ms
103,592 KB
testcase_45 AC 301 ms
103,844 KB
testcase_46 AC 294 ms
103,908 KB
testcase_47 AC 250 ms
97,124 KB
testcase_48 AC 253 ms
97,000 KB
testcase_49 AC 248 ms
97,128 KB
testcase_50 AC 253 ms
97,124 KB
testcase_51 AC 253 ms
96,868 KB
testcase_52 AC 199 ms
117,200 KB
testcase_53 AC 197 ms
116,996 KB
testcase_54 AC 196 ms
116,992 KB
testcase_55 AC 168 ms
82,944 KB
testcase_56 AC 167 ms
83,072 KB
testcase_57 AC 164 ms
82,816 KB
testcase_58 AC 185 ms
101,652 KB
testcase_59 AC 436 ms
127,564 KB
testcase_60 AC 200 ms
88,824 KB
testcase_61 AC 164 ms
83,080 KB
testcase_62 AC 86 ms
78,040 KB
testcase_63 AC 215 ms
89,344 KB
testcase_64 AC 218 ms
89,088 KB
testcase_65 AC 231 ms
89,956 KB
testcase_66 AC 167 ms
83,072 KB
testcase_67 AC 327 ms
103,456 KB
testcase_68 AC 159 ms
83,328 KB
testcase_69 AC 331 ms
102,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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
#==================================================
def hashing(a,b):
    return a*q+b

#==================================================
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); Hp=Hasher(L, beta, p)
q=10**9+9; gamma=randint(2,q-1); Hq=Hasher(L, gamma, q)

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

for j in range(1,L):
    Bp[j]=Bp[j-1]*beta %p
    Bq[j]=Bq[j-1]*gamma%q

for j in range(L):
    Bp[j]*=beta-1 ; Bp[j]%=p
    Bq[j]*=gamma-1; Bq[j]%=q

E=set()
Ans=["No"]*N
for i in range(N):
    hp=Hp.encode(S[i]); hq=Hq.encode(S[i])

    h=hashing(hp,hq)
    if h in E:
        Ans[i]="Yes"

    for j in range(len(S[i])-1):
        kp=(hp+Bp[len(S[i])-j-2]*(S[i][j+1]-S[i][j]))%p
        kq=(hq+Bq[len(S[i])-j-2]*(S[i][j+1]-S[i][j]))%q

        if hashing(kp,kq) in E:
            Ans[i]="Yes"

    E.add(h)

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