結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 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 30 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 300 ms
38,264 KB
testcase_09 AC 1,583 ms
75,256 KB
testcase_10 AC 163 ms
38,528 KB
testcase_11 AC 298 ms
38,128 KB
testcase_12 AC 271 ms
38,176 KB
testcase_13 AC 288 ms
38,120 KB
testcase_14 WA -
testcase_15 AC 167 ms
38,028 KB
testcase_16 AC 1,568 ms
75,176 KB
testcase_17 AC 1,515 ms
75,184 KB
testcase_18 AC 268 ms
38,128 KB
testcase_19 AC 236 ms
38,516 KB
testcase_20 AC 1,501 ms
75,188 KB
testcase_21 AC 1,465 ms
75,196 KB
testcase_22 AC 1,417 ms
63,884 KB
testcase_23 AC 1,483 ms
75,192 KB
testcase_24 AC 1,471 ms
74,768 KB
testcase_25 AC 1,505 ms
75,268 KB
testcase_26 AC 1,478 ms
75,264 KB
testcase_27 WA -
testcase_28 AC 75 ms
17,404 KB
testcase_29 WA -
testcase_30 AC 119 ms
21,880 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 242 ms
33,968 KB
testcase_37 AC 246 ms
34,792 KB
testcase_38 WA -
testcase_39 AC 225 ms
32,336 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 171 ms
26,708 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 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