結果

問題 No.2254 Reverse Only
ユーザー vwxyzvwxyz
提出日時 2024-06-02 02:13:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,729 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 75,324 KB
最終ジャッジ日時 2024-06-02 02:13:57
合計ジャッジ時間 21,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 252 ms
38,128 KB
testcase_09 AC 1,446 ms
75,132 KB
testcase_10 AC 149 ms
38,536 KB
testcase_11 AC 259 ms
38,120 KB
testcase_12 AC 241 ms
38,132 KB
testcase_13 AC 300 ms
38,188 KB
testcase_14 WA -
testcase_15 AC 155 ms
38,140 KB
testcase_16 AC 1,430 ms
75,076 KB
testcase_17 AC 1,418 ms
75,184 KB
testcase_18 AC 245 ms
38,224 KB
testcase_19 AC 208 ms
38,532 KB
testcase_20 AC 1,380 ms
75,204 KB
testcase_21 AC 1,452 ms
75,324 KB
testcase_22 AC 1,432 ms
63,836 KB
testcase_23 AC 1,460 ms
75,200 KB
testcase_24 AC 1,427 ms
75,268 KB
testcase_25 AC 1,441 ms
75,268 KB
testcase_26 AC 1,447 ms
75,268 KB
testcase_27 WA -
testcase_28 AC 73 ms
17,292 KB
testcase_29 WA -
testcase_30 AC 123 ms
21,764 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 216 ms
33,888 KB
testcase_37 AC 225 ms
35,092 KB
testcase_38 WA -
testcase_39 AC 223 ms
32,276 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 156 ms
26,784 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class Rolling_Hash:
    def __init__(self,lst,base,mod=0,e_sum=0,e_prod=1):
        self.len=len(lst)
        self.base=base
        self.mod=mod
        self.e_sum=e_sum
        self.e_prod=e_prod
        self.rolling_hash=[lst[i] for i in range(self.len)]+[self.e_sum]
        self.pow_base=[self.e_prod]
        for i in range(self.len-1,-1,-1):
            self.rolling_hash[i]+=self.rolling_hash[i+1]*self.base
            self.pow_base.append(self.pow_base[-1]*self.base)
            if self.mod:
                self.rolling_hash[i]%=self.mod
                self.pow_base[-1]%=self.mod

    def __getitem__(self,i):
        if type(i)==int:
            a,b=i,i+1
        else:
            a,b=i.start,i.stop
            if a==None or a<-self.len:
                a=0
            elif self.len<=a:
                a=self.len
            elif a<0:
                a+=self.len
            if b==None or self.len<=b:
                b=self.len
            elif b<-self.len:
                b=0
            elif b<0:
                b+=self.len
        h=self.rolling_hash[a]-self.rolling_hash[b]*self.pow_base[b-a]
        if self.mod:
            h%=self.mod
        return h

    def __len__(self):
        return self.len

N,K=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
ans="No"
if K>N:
    if A==B:
        ans="Yes"
if K==N:
    if A==B or A==B[::-1]:
        ans="Yes"
elif K==N-1:
    base=100
    mod=(1<<61)-1
    A0=Rolling_Hash(A,base,mod)[:]
    A1=Rolling_Hash(A[::-1],base,mod)[:]
    B=Rolling_Hash(B*2,base,mod)
    for i in range(N):
        if A0==B[i:i+N] or A1==B[i:i+N]:
            ans="Yes"
else:
    if sorted(A)==sorted(B):
        ans="Yes"
print(ans)
0