結果

問題 No.2254 Reverse Only
ユーザー 👑 rin204rin204
提出日時 2024-04-29 14:48:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 944 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 175,328 KB
最終ジャッジ日時 2024-11-18 19:14:22
合計ジャッジ時間 8,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 201 ms
114,996 KB
testcase_09 AC 199 ms
174,388 KB
testcase_10 AC 123 ms
109,076 KB
testcase_11 AC 193 ms
115,016 KB
testcase_12 AC 190 ms
115,324 KB
testcase_13 AC 126 ms
108,936 KB
testcase_14 AC 124 ms
108,592 KB
testcase_15 AC 129 ms
110,464 KB
testcase_16 AC 203 ms
174,084 KB
testcase_17 AC 206 ms
174,644 KB
testcase_18 AC 191 ms
115,628 KB
testcase_19 AC 175 ms
115,412 KB
testcase_20 AC 203 ms
174,672 KB
testcase_21 AC 202 ms
175,328 KB
testcase_22 AC 210 ms
142,936 KB
testcase_23 AC 217 ms
146,736 KB
testcase_24 AC 212 ms
146,536 KB
testcase_25 AC 214 ms
141,896 KB
testcase_26 AC 210 ms
142,148 KB
testcase_27 AC 39 ms
60,412 KB
testcase_28 AC 70 ms
80,028 KB
testcase_29 AC 80 ms
99,432 KB
testcase_30 AC 104 ms
98,848 KB
testcase_31 AC 57 ms
78,380 KB
testcase_32 AC 60 ms
80,940 KB
testcase_33 AC 47 ms
68,320 KB
testcase_34 AC 96 ms
107,104 KB
testcase_35 AC 72 ms
91,828 KB
testcase_36 AC 174 ms
107,212 KB
testcase_37 AC 171 ms
107,928 KB
testcase_38 AC 55 ms
74,348 KB
testcase_39 AC 160 ms
103,768 KB
testcase_40 AC 40 ms
60,200 KB
testcase_41 AC 68 ms
88,120 KB
testcase_42 AC 54 ms
74,468 KB
testcase_43 AC 95 ms
104,700 KB
testcase_44 AC 119 ms
107,516 KB
testcase_45 AC 128 ms
103,776 KB
testcase_46 AC 39 ms
59,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Z_algorithm(S):
    le = len(S)
    Z = [0] * le
    Z[0] = le
    i = 1
    j = 0
    while i < le:
        while i + j < le and S[j] == S[i + j]:
            j += 1
        Z[i] = j
        if j == 0:
            i += 1
            continue

        k = 1
        while i + k < le and k + Z[k] < j:
            Z[i + k] = Z[k]
            k += 1
        i += k
        j -= k
    return Z


n, k = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

if A == B:
    print("Yes")
elif n < k:
    print("No")
elif n == k:
    if A == B[::-1]:
        print("Yes")
    else:
        print("No")
elif n == k + 1:
    C = B + A + A
    D = B + A[::-1] + A[::-1]
    Z1 = Z_algorithm(C)
    Z2 = Z_algorithm(D)
    ma = max(*Z1[n:], *Z2[n:])
    if ma >= n:
        print("Yes")
    else:
        print("No")
else:
    if sorted(A) == sorted(B):
        print("Yes")
    else:
        print("No")
0