結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー roarisroaris
提出日時 2022-10-15 06:05:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 761 ms / 3,000 ms
コード長 2,186 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 252,416 KB
最終ジャッジ日時 2024-06-26 19:29:30
合計ジャッジ時間 39,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 43 ms
54,784 KB
testcase_02 AC 446 ms
92,788 KB
testcase_03 AC 571 ms
99,728 KB
testcase_04 AC 442 ms
91,756 KB
testcase_05 AC 355 ms
87,444 KB
testcase_06 AC 486 ms
95,232 KB
testcase_07 AC 492 ms
85,544 KB
testcase_08 AC 194 ms
79,360 KB
testcase_09 AC 508 ms
93,516 KB
testcase_10 AC 272 ms
83,852 KB
testcase_11 AC 294 ms
85,176 KB
testcase_12 AC 383 ms
89,580 KB
testcase_13 AC 591 ms
98,428 KB
testcase_14 AC 395 ms
90,608 KB
testcase_15 AC 464 ms
94,140 KB
testcase_16 AC 653 ms
103,956 KB
testcase_17 AC 349 ms
82,944 KB
testcase_18 AC 508 ms
90,424 KB
testcase_19 AC 316 ms
86,748 KB
testcase_20 AC 611 ms
100,248 KB
testcase_21 AC 245 ms
81,124 KB
testcase_22 AC 730 ms
107,748 KB
testcase_23 AC 690 ms
107,672 KB
testcase_24 AC 730 ms
108,128 KB
testcase_25 AC 697 ms
107,540 KB
testcase_26 AC 733 ms
108,448 KB
testcase_27 AC 718 ms
108,116 KB
testcase_28 AC 743 ms
107,872 KB
testcase_29 AC 717 ms
108,372 KB
testcase_30 AC 718 ms
108,384 KB
testcase_31 AC 747 ms
106,488 KB
testcase_32 AC 726 ms
107,816 KB
testcase_33 AC 750 ms
107,768 KB
testcase_34 AC 725 ms
108,908 KB
testcase_35 AC 761 ms
109,476 KB
testcase_36 AC 717 ms
106,904 KB
testcase_37 AC 717 ms
107,776 KB
testcase_38 AC 708 ms
107,328 KB
testcase_39 AC 717 ms
108,776 KB
testcase_40 AC 710 ms
106,744 KB
testcase_41 AC 685 ms
107,416 KB
testcase_42 AC 574 ms
94,992 KB
testcase_43 AC 578 ms
94,740 KB
testcase_44 AC 611 ms
94,884 KB
testcase_45 AC 565 ms
94,728 KB
testcase_46 AC 581 ms
94,872 KB
testcase_47 AC 535 ms
88,144 KB
testcase_48 AC 527 ms
88,024 KB
testcase_49 AC 532 ms
88,020 KB
testcase_50 AC 548 ms
87,628 KB
testcase_51 AC 537 ms
87,376 KB
testcase_52 AC 367 ms
251,776 KB
testcase_53 AC 361 ms
252,416 KB
testcase_54 AC 354 ms
252,032 KB
testcase_55 AC 497 ms
78,020 KB
testcase_56 AC 501 ms
77,896 KB
testcase_57 AC 504 ms
77,900 KB
testcase_58 AC 522 ms
242,236 KB
testcase_59 AC 729 ms
112,860 KB
testcase_60 AC 165 ms
78,152 KB
testcase_61 AC 497 ms
77,708 KB
testcase_62 AC 126 ms
78,188 KB
testcase_63 AC 233 ms
77,468 KB
testcase_64 AC 236 ms
77,432 KB
testcase_65 AC 244 ms
77,604 KB
testcase_66 AC 484 ms
77,728 KB
testcase_67 AC 323 ms
78,976 KB
testcase_68 AC 501 ms
77,720 KB
testcase_69 AC 347 ms
79,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class RollingHash1:
    def __init__(self, s):
        self.base = 17
        self.mod = 10**9+7
        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

class RollingHash2:
    def __init__(self, s):
        self.base = 31
        self.mod = 998244353
        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()

for _ in range(N):
    S = input()[:-1]
    n = len(S)
    rh1 = RollingHash1(S)
    rh2 = RollingHash2(S)
    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])-ord('a'))*rh1.power[n-1-i]%rh1.mod
            nh1 %= rh1.mod
            nh1 -= (ord(S[i+1])-ord('a'))*rh1.power[n-2-i]%rh1.mod
            nh1 %= rh1.mod
            nh1 += (ord(S[i+1])-ord('a'))*rh1.power[n-1-i]%rh1.mod
            nh1 %= rh1.mod
            nh1 += (ord(S[i])-ord('a'))*rh1.power[n-2-i]%rh1.mod
            nh1 %= rh1.mod
            
            nh2 = h2
            nh2 -= (ord(S[i])-ord('a'))*rh2.power[n-1-i]%rh2.mod
            nh2 %= rh2.mod
            nh2 -= (ord(S[i+1])-ord('a'))*rh2.power[n-2-i]%rh2.mod
            nh2 %= rh2.mod
            nh2 += (ord(S[i+1])-ord('a'))*rh2.power[n-1-i]%rh2.mod
            nh2 %= rh2.mod
            nh2 += (ord(S[i])-ord('a'))*rh2.power[n-2-i]%rh2.mod
            nh2 %= rh2.mod
            
            if (nh1, nh2) in ws:
                print('Yes')
                break
        else:
            print('No')
        
    ws.add((h1, h2))
0