結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー roarisroaris
提出日時 2022-10-15 02:34:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 793 ms / 3,000 ms
コード長 2,247 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 254,152 KB
最終ジャッジ日時 2024-06-26 19:17:06
合計ジャッジ時間 40,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
56,064 KB
testcase_01 AC 50 ms
56,064 KB
testcase_02 AC 439 ms
94,104 KB
testcase_03 AC 576 ms
100,600 KB
testcase_04 AC 442 ms
92,564 KB
testcase_05 AC 358 ms
88,032 KB
testcase_06 AC 490 ms
96,300 KB
testcase_07 AC 502 ms
85,808 KB
testcase_08 AC 202 ms
79,704 KB
testcase_09 AC 501 ms
92,500 KB
testcase_10 AC 279 ms
83,952 KB
testcase_11 AC 308 ms
86,912 KB
testcase_12 AC 403 ms
90,944 KB
testcase_13 AC 616 ms
98,200 KB
testcase_14 AC 404 ms
91,452 KB
testcase_15 AC 476 ms
95,572 KB
testcase_16 AC 656 ms
104,740 KB
testcase_17 AC 356 ms
83,404 KB
testcase_18 AC 532 ms
91,232 KB
testcase_19 AC 322 ms
88,112 KB
testcase_20 AC 651 ms
100,236 KB
testcase_21 AC 259 ms
81,360 KB
testcase_22 AC 769 ms
109,616 KB
testcase_23 AC 705 ms
108,096 KB
testcase_24 AC 737 ms
109,024 KB
testcase_25 AC 716 ms
109,188 KB
testcase_26 AC 756 ms
109,196 KB
testcase_27 AC 740 ms
108,956 KB
testcase_28 AC 743 ms
108,820 KB
testcase_29 AC 757 ms
108,360 KB
testcase_30 AC 742 ms
108,788 KB
testcase_31 AC 717 ms
108,008 KB
testcase_32 AC 732 ms
108,800 KB
testcase_33 AC 751 ms
110,028 KB
testcase_34 AC 753 ms
109,696 KB
testcase_35 AC 793 ms
110,516 KB
testcase_36 AC 721 ms
107,868 KB
testcase_37 AC 724 ms
108,440 KB
testcase_38 AC 732 ms
107,800 KB
testcase_39 AC 742 ms
109,472 KB
testcase_40 AC 723 ms
107,880 KB
testcase_41 AC 698 ms
107,824 KB
testcase_42 AC 597 ms
95,796 KB
testcase_43 AC 584 ms
95,668 KB
testcase_44 AC 592 ms
95,540 KB
testcase_45 AC 604 ms
95,568 KB
testcase_46 AC 603 ms
95,536 KB
testcase_47 AC 554 ms
88,244 KB
testcase_48 AC 548 ms
88,508 KB
testcase_49 AC 547 ms
88,508 KB
testcase_50 AC 555 ms
88,628 KB
testcase_51 AC 539 ms
88,376 KB
testcase_52 AC 359 ms
254,152 KB
testcase_53 AC 357 ms
253,888 KB
testcase_54 AC 369 ms
253,792 KB
testcase_55 AC 506 ms
78,500 KB
testcase_56 AC 506 ms
78,500 KB
testcase_57 AC 507 ms
78,744 KB
testcase_58 AC 532 ms
243,924 KB
testcase_59 AC 728 ms
112,720 KB
testcase_60 AC 181 ms
78,600 KB
testcase_61 AC 505 ms
78,484 KB
testcase_62 AC 127 ms
78,424 KB
testcase_63 AC 239 ms
78,900 KB
testcase_64 AC 238 ms
78,336 KB
testcase_65 AC 248 ms
78,464 KB
testcase_66 AC 497 ms
78,488 KB
testcase_67 AC 328 ms
79,708 KB
testcase_68 AC 507 ms
78,620 KB
testcase_69 AC 329 ms
79,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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')+1)*rh1.power[n-1-i]%rh1.mod
            nh1 %= rh1.mod
            nh1 -= (ord(S[i+1])-ord('a')+1)*rh1.power[n-2-i]%rh1.mod
            nh1 %= rh1.mod
            nh1 += (ord(S[i+1])-ord('a')+1)*rh1.power[n-1-i]%rh1.mod
            nh1 %= rh1.mod
            nh1 += (ord(S[i])-ord('a')+1)*rh1.power[n-2-i]%rh1.mod
            nh1 %= rh1.mod
            
            nh2 = h2
            nh2 -= (ord(S[i])-ord('a')+1)*rh2.power[n-1-i]%rh2.mod
            nh2 %= rh2.mod
            nh2 -= (ord(S[i+1])-ord('a')+1)*rh2.power[n-2-i]%rh2.mod
            nh2 %= rh2.mod
            nh2 += (ord(S[i+1])-ord('a')+1)*rh2.power[n-1-i]%rh2.mod
            nh2 %= rh2.mod
            nh2 += (ord(S[i])-ord('a')+1)*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