結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー roarisroaris
提出日時 2022-10-15 02:47:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 3,000 ms
コード長 1,404 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 251,776 KB
最終ジャッジ日時 2024-06-26 19:19:57
合計ジャッジ時間 30,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,400 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 377 ms
92,540 KB
testcase_03 AC 399 ms
97,916 KB
testcase_04 AC 350 ms
92,620 KB
testcase_05 AC 278 ms
85,636 KB
testcase_06 AC 408 ms
95,292 KB
testcase_07 AC 318 ms
85,276 KB
testcase_08 AC 185 ms
78,592 KB
testcase_09 AC 370 ms
92,920 KB
testcase_10 AC 216 ms
82,560 KB
testcase_11 AC 241 ms
84,988 KB
testcase_12 AC 329 ms
89,752 KB
testcase_13 AC 442 ms
97,040 KB
testcase_14 AC 304 ms
89,028 KB
testcase_15 AC 385 ms
93,952 KB
testcase_16 AC 510 ms
103,836 KB
testcase_17 AC 235 ms
81,696 KB
testcase_18 AC 342 ms
90,496 KB
testcase_19 AC 263 ms
86,528 KB
testcase_20 AC 470 ms
100,304 KB
testcase_21 AC 233 ms
79,992 KB
testcase_22 AC 614 ms
107,832 KB
testcase_23 AC 545 ms
107,000 KB
testcase_24 AC 580 ms
107,164 KB
testcase_25 AC 549 ms
107,392 KB
testcase_26 AC 567 ms
107,196 KB
testcase_27 AC 554 ms
107,824 KB
testcase_28 AC 559 ms
107,696 KB
testcase_29 AC 597 ms
107,544 KB
testcase_30 AC 512 ms
106,812 KB
testcase_31 AC 579 ms
107,828 KB
testcase_32 AC 519 ms
107,428 KB
testcase_33 AC 551 ms
107,052 KB
testcase_34 AC 539 ms
107,140 KB
testcase_35 AC 574 ms
107,448 KB
testcase_36 AC 541 ms
107,488 KB
testcase_37 AC 521 ms
107,004 KB
testcase_38 AC 529 ms
107,000 KB
testcase_39 AC 531 ms
107,232 KB
testcase_40 AC 506 ms
106,952 KB
testcase_41 AC 532 ms
106,884 KB
testcase_42 AC 399 ms
94,224 KB
testcase_43 AC 394 ms
94,488 KB
testcase_44 AC 397 ms
94,480 KB
testcase_45 AC 396 ms
94,480 KB
testcase_46 AC 393 ms
94,484 KB
testcase_47 AC 359 ms
86,776 KB
testcase_48 AC 336 ms
87,032 KB
testcase_49 AC 342 ms
86,776 KB
testcase_50 AC 340 ms
86,620 KB
testcase_51 AC 341 ms
86,748 KB
testcase_52 AC 355 ms
251,776 KB
testcase_53 AC 341 ms
251,648 KB
testcase_54 AC 334 ms
251,648 KB
testcase_55 AC 306 ms
77,568 KB
testcase_56 AC 298 ms
77,440 KB
testcase_57 AC 296 ms
77,440 KB
testcase_58 AC 413 ms
242,116 KB
testcase_59 AC 523 ms
112,000 KB
testcase_60 AC 156 ms
77,568 KB
testcase_61 AC 301 ms
77,568 KB
testcase_62 AC 93 ms
76,800 KB
testcase_63 AC 217 ms
77,184 KB
testcase_64 AC 212 ms
76,940 KB
testcase_65 AC 259 ms
78,368 KB
testcase_66 AC 297 ms
77,696 KB
testcase_67 AC 309 ms
79,340 KB
testcase_68 AC 298 ms
77,440 KB
testcase_69 AC 310 ms
79,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class RollingHash:
    def __init__(self, s, base=17, mod=10**9+7):
        self.base = base
        self.mod = mod
        self.acc = [0]
        self.power = [1]
        
        for i in range(len(s)):
            self.acc.append((self.acc[-1]*self.base%self.mod+ord(s[i])-ord('a')+1)%self.mod)
            self.power.append(self.power[-1]*self.base%self.mod)
    
    def get(self, l, r):
        return (self.acc[r]-self.acc[l]*self.power[r-l])%self.mod

N = int(input())
ws = set()
base1, mod1 = 17, 10**9+7
base2, mod2 = 31, 10**9+9

for _ in range(N):
    S = input()[:-1]
    n = len(S)
    rh1 = RollingHash(S, base1, mod1)
    rh2 = RollingHash(S, base2, mod2)
    h1 = rh1.get(0, n)
    h2 = rh2.get(0, n)
    
    if (h1, h2) in ws:
        print('Yes')
    else:
        for i in range(n-1):
            nh1 = h1
            nh1 += (ord(S[i+1])-ord(S[i]))*rh1.power[n-1-i]%mod1
            nh1 += (ord(S[i])-ord(S[i+1]))*rh1.power[n-2-i]%mod1
            nh1 %= rh1.mod
            
            nh2 = h2
            nh2 += (ord(S[i+1])-ord(S[i]))*rh2.power[n-1-i]%mod2
            nh2 += (ord(S[i])-ord(S[i+1]))*rh2.power[n-2-i]%mod2
            nh2 %= rh2.mod
            
            if (nh1, nh2) in ws:
                print('Yes')
                break
        else:
            print('No')
        
    ws.add((h1, h2))
0