結果

問題 No.2254 Reverse Only
ユーザー vwxyzvwxyz
提出日時 2024-06-02 02:14:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,448 ms / 2,000 ms
コード長 1,731 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 75,272 KB
最終ジャッジ日時 2024-06-02 02:14:44
合計ジャッジ時間 19,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 28 ms
11,008 KB
testcase_04 AC 27 ms
11,008 KB
testcase_05 AC 28 ms
11,008 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 27 ms
11,008 KB
testcase_08 AC 279 ms
38,132 KB
testcase_09 AC 1,399 ms
75,260 KB
testcase_10 AC 148 ms
38,536 KB
testcase_11 AC 246 ms
38,124 KB
testcase_12 AC 236 ms
38,132 KB
testcase_13 AC 148 ms
38,144 KB
testcase_14 AC 145 ms
38,276 KB
testcase_15 AC 157 ms
38,272 KB
testcase_16 AC 1,382 ms
75,180 KB
testcase_17 AC 1,401 ms
75,184 KB
testcase_18 AC 243 ms
38,268 KB
testcase_19 AC 210 ms
38,528 KB
testcase_20 AC 1,377 ms
75,188 KB
testcase_21 AC 1,395 ms
75,200 KB
testcase_22 AC 1,389 ms
63,776 KB
testcase_23 AC 1,448 ms
75,200 KB
testcase_24 AC 1,408 ms
75,268 KB
testcase_25 AC 1,391 ms
75,272 KB
testcase_26 AC 1,422 ms
75,268 KB
testcase_27 AC 32 ms
11,904 KB
testcase_28 AC 71 ms
17,292 KB
testcase_29 AC 81 ms
23,512 KB
testcase_30 AC 110 ms
21,860 KB
testcase_31 AC 53 ms
17,328 KB
testcase_32 AC 58 ms
17,944 KB
testcase_33 AC 40 ms
14,204 KB
testcase_34 AC 98 ms
27,076 KB
testcase_35 AC 73 ms
21,352 KB
testcase_36 AC 203 ms
33,888 KB
testcase_37 AC 221 ms
34,948 KB
testcase_38 AC 45 ms
15,972 KB
testcase_39 AC 191 ms
32,352 KB
testcase_40 AC 31 ms
11,648 KB
testcase_41 AC 68 ms
20,564 KB
testcase_42 AC 49 ms
16,284 KB
testcase_43 AC 106 ms
28,412 KB
testcase_44 AC 135 ms
36,476 KB
testcase_45 AC 144 ms
26,720 KB
testcase_46 AC 30 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

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"
elif 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