結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 251 ms
38,132 KB
testcase_09 AC 1,395 ms
75,240 KB
testcase_10 AC 151 ms
38,528 KB
testcase_11 AC 255 ms
38,240 KB
testcase_12 AC 240 ms
38,120 KB
testcase_13 AC 252 ms
38,136 KB
testcase_14 WA -
testcase_15 AC 150 ms
38,128 KB
testcase_16 AC 1,413 ms
75,196 KB
testcase_17 AC 1,432 ms
75,176 KB
testcase_18 AC 246 ms
38,172 KB
testcase_19 AC 207 ms
38,520 KB
testcase_20 AC 1,399 ms
75,236 KB
testcase_21 AC 1,406 ms
75,208 KB
testcase_22 AC 1,368 ms
63,756 KB
testcase_23 AC 1,377 ms
75,172 KB
testcase_24 AC 1,423 ms
76,572 KB
testcase_25 AC 1,380 ms
75,252 KB
testcase_26 AC 1,375 ms
75,264 KB
testcase_27 WA -
testcase_28 AC 66 ms
17,280 KB
testcase_29 WA -
testcase_30 AC 110 ms
21,856 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 221 ms
33,968 KB
testcase_37 AC 222 ms
34,920 KB
testcase_38 WA -
testcase_39 AC 204 ms
32,264 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 154 ms
26,644 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=10
    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