結果

問題 No.2254 Reverse Only
ユーザー titiatitia
提出日時 2023-04-09 02:27:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 1,535 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 57,088 KB
最終ジャッジ日時 2024-10-04 00:08:51
合計ジャッジ時間 14,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 25 ms
11,008 KB
testcase_06 AC 25 ms
11,008 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 231 ms
38,528 KB
testcase_09 AC 935 ms
54,888 KB
testcase_10 AC 143 ms
38,668 KB
testcase_11 AC 236 ms
38,380 KB
testcase_12 AC 225 ms
38,508 KB
testcase_13 AC 243 ms
38,400 KB
testcase_14 AC 234 ms
38,404 KB
testcase_15 AC 237 ms
38,508 KB
testcase_16 AC 916 ms
54,660 KB
testcase_17 AC 948 ms
54,748 KB
testcase_18 AC 228 ms
38,376 KB
testcase_19 AC 192 ms
38,692 KB
testcase_20 AC 862 ms
54,796 KB
testcase_21 AC 895 ms
54,768 KB
testcase_22 AC 743 ms
46,624 KB
testcase_23 AC 822 ms
54,664 KB
testcase_24 AC 833 ms
57,088 KB
testcase_25 AC 819 ms
54,768 KB
testcase_26 AC 824 ms
54,768 KB
testcase_27 AC 30 ms
11,648 KB
testcase_28 AC 63 ms
17,360 KB
testcase_29 AC 114 ms
23,592 KB
testcase_30 AC 102 ms
21,968 KB
testcase_31 AC 67 ms
17,864 KB
testcase_32 AC 76 ms
18,200 KB
testcase_33 AC 49 ms
14,444 KB
testcase_34 AC 146 ms
27,280 KB
testcase_35 AC 98 ms
21,352 KB
testcase_36 AC 205 ms
35,392 KB
testcase_37 AC 214 ms
35,076 KB
testcase_38 AC 60 ms
16,248 KB
testcase_39 AC 191 ms
32,356 KB
testcase_40 AC 30 ms
11,776 KB
testcase_41 AC 90 ms
20,828 KB
testcase_42 AC 62 ms
16,748 KB
testcase_43 AC 154 ms
29,436 KB
testcase_44 AC 224 ms
36,612 KB
testcase_45 AC 140 ms
26,792 KB
testcase_46 AC 30 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

if sorted(A)!=sorted(B):
    print("No")
    exit()

if K==N:
    if A==B or A==B[::-1]:
        print("Yes")
    else:
        print("No")
    exit()

elif K>N:
    if A==B:
        print("Yes")
    else:
        print("No")
    exit()

elif K<N-1:
    print("Yes")
    exit()

# Rolling Hash

LEN=N

p=200000 # 文字の種類
mod=67280421310721 # Hashがぶつからない, pと互いに素な数を適当に指定
INV=pow(p,mod-2,mod)
kake=pow(p,LEN-1,mod)

score=0
for i in range(N):
    score=(score*p%mod+B[i])%mod

TABLE=[0] # Rolling Hashのテーブル. 最初は0

for i in range(N):
    TABLE.append((p*TABLE[-1]%mod+A[i])%mod) # テーブルを埋める

def hash_ij(i,j): # [i,j)のハッシュ値を求める
    return (TABLE[j]-TABLE[i]*pow(p,j-i,mod))%mod

LIST=[TABLE[-1]]

now=TABLE[-1]

for i in range(N-1,-1,-1):
    a=A[i]
    now-=a

    now=now*INV%mod

    now=(now+a*kake)%mod

    LIST.append(now)

TABLE=[0] # Rolling Hashのテーブル. 最初は0
A=A[::-1]

for i in range(N):
    TABLE.append((p*TABLE[-1]%mod+A[i])%mod) # テーブルを埋める

def hash_ij(i,j): # [i,j)のハッシュ値を求める
    return (TABLE[j]-TABLE[i]*pow(p,j-i,mod))%mod

LIST.append(TABLE[-1])

now=TABLE[-1]
for i in range(N-1,-1,-1):
    a=A[i]
    now-=a
    now=now*INV%mod
    now=(now+a*kake)%mod
    LIST.append(now)

if score in LIST:
    print("Yes")
else:
    print("No")
0