結果

問題 No.2254 Reverse Only
ユーザー titiatitia
提出日時 2023-04-09 02:25:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,548 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 57,108 KB
最終ジャッジ日時 2024-10-04 00:05:06
合計ジャッジ時間 16,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 24 ms
10,880 KB
testcase_06 AC 24 ms
10,880 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 230 ms
38,400 KB
testcase_09 WA -
testcase_10 AC 142 ms
38,412 KB
testcase_11 AC 228 ms
38,408 KB
testcase_12 AC 221 ms
38,544 KB
testcase_13 AC 230 ms
38,464 KB
testcase_14 AC 228 ms
38,400 KB
testcase_15 AC 233 ms
38,524 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 225 ms
38,380 KB
testcase_19 AC 196 ms
38,540 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 30 ms
11,776 KB
testcase_28 AC 63 ms
17,356 KB
testcase_29 AC 113 ms
23,640 KB
testcase_30 AC 102 ms
21,912 KB
testcase_31 AC 66 ms
17,740 KB
testcase_32 AC 71 ms
18,452 KB
testcase_33 AC 46 ms
14,444 KB
testcase_34 AC 140 ms
27,276 KB
testcase_35 AC 99 ms
21,260 KB
testcase_36 AC 198 ms
35,432 KB
testcase_37 AC 210 ms
34,932 KB
testcase_38 AC 58 ms
16,328 KB
testcase_39 AC 185 ms
32,356 KB
testcase_40 AC 30 ms
11,648 KB
testcase_41 AC 90 ms
20,956 KB
testcase_42 AC 61 ms
16,872 KB
testcase_43 AC 161 ms
29,436 KB
testcase_44 AC 224 ms
36,604 KB
testcase_45 AC 140 ms
26,600 KB
testcase_46 AC 29 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)

print(LIST)

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