結果

問題 No.2254 Reverse Only
ユーザー sotanishysotanishy
提出日時 2023-03-24 21:52:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 135,072 KB
最終ジャッジ日時 2024-09-18 17:02:19
合計ジャッジ時間 7,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 33 ms
51,712 KB
testcase_07 AC 32 ms
52,224 KB
testcase_08 AC 174 ms
113,676 KB
testcase_09 AC 192 ms
134,532 KB
testcase_10 AC 116 ms
110,564 KB
testcase_11 AC 184 ms
113,748 KB
testcase_12 AC 177 ms
114,044 KB
testcase_13 AC 187 ms
113,536 KB
testcase_14 AC 195 ms
114,176 KB
testcase_15 AC 188 ms
115,084 KB
testcase_16 AC 195 ms
132,736 KB
testcase_17 AC 197 ms
134,488 KB
testcase_18 AC 175 ms
113,796 KB
testcase_19 AC 156 ms
113,772 KB
testcase_20 AC 179 ms
135,072 KB
testcase_21 AC 187 ms
134,556 KB
testcase_22 AC 138 ms
128,024 KB
testcase_23 AC 144 ms
131,048 KB
testcase_24 AC 151 ms
131,376 KB
testcase_25 AC 154 ms
132,256 KB
testcase_26 AC 163 ms
131,932 KB
testcase_27 AC 44 ms
60,596 KB
testcase_28 AC 72 ms
78,336 KB
testcase_29 AC 107 ms
103,680 KB
testcase_30 AC 95 ms
97,280 KB
testcase_31 AC 68 ms
80,768 KB
testcase_32 AC 73 ms
83,840 KB
testcase_33 AC 52 ms
69,504 KB
testcase_34 AC 128 ms
105,600 KB
testcase_35 AC 94 ms
95,488 KB
testcase_36 AC 158 ms
106,932 KB
testcase_37 AC 164 ms
107,816 KB
testcase_38 AC 58 ms
75,904 KB
testcase_39 AC 151 ms
103,488 KB
testcase_40 AC 45 ms
60,032 KB
testcase_41 AC 82 ms
91,264 KB
testcase_42 AC 60 ms
77,056 KB
testcase_43 AC 125 ms
102,836 KB
testcase_44 AC 169 ms
111,816 KB
testcase_45 AC 122 ms
101,888 KB
testcase_46 AC 40 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def z_array(s):
    n = len(s)
    z = [0] * n
    z[0] = n
    l = r = 0
    for i in range(1, n):
        k = i - l
        if i <= r and z[k] < r - i + 1:
            z[i] = z[k]
        else:
            l = i
            if i > r:
                r = i
            while r < n and s[r - l] == s[r]:
                r += 1
            r -= 1
            z[i] = r - l + 1
    return z


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")
elif A == B:
    print("Yes")
elif k > N:
    print("No")
elif k <= N-2:
    # rotation + swap
    print("Yes")
elif k == N-1:
    # rotation
    z = z_array(B + [0] + A + A)
    for i in range(N):
        if z[N+1+i] >= N:
            print("Yes")
            exit()
    print("No")
else:
    # k == N
    print("Yes" if A[::-1] == B else "No")
0