結果

問題 No.2254 Reverse Only
ユーザー tassei903tassei903
提出日時 2023-03-24 23:48:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 139,268 KB
最終ジャッジ日時 2024-09-18 17:43:34
合計ジャッジ時間 6,780 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 187 ms
114,924 KB
testcase_09 AC 147 ms
139,120 KB
testcase_10 AC 119 ms
108,936 KB
testcase_11 AC 185 ms
114,536 KB
testcase_12 AC 195 ms
114,924 KB
testcase_13 AC 122 ms
108,668 KB
testcase_14 AC 118 ms
108,532 KB
testcase_15 AC 129 ms
110,576 KB
testcase_16 AC 147 ms
137,832 KB
testcase_17 AC 151 ms
138,864 KB
testcase_18 AC 195 ms
115,184 KB
testcase_19 AC 174 ms
115,460 KB
testcase_20 AC 146 ms
139,268 KB
testcase_21 AC 148 ms
138,884 KB
testcase_22 AC 146 ms
132,020 KB
testcase_23 AC 162 ms
139,008 KB
testcase_24 AC 161 ms
138,404 KB
testcase_25 AC 153 ms
139,136 KB
testcase_26 AC 153 ms
138,888 KB
testcase_27 AC 42 ms
60,544 KB
testcase_28 AC 70 ms
79,104 KB
testcase_29 AC 80 ms
99,584 KB
testcase_30 AC 103 ms
98,432 KB
testcase_31 AC 65 ms
78,464 KB
testcase_32 AC 69 ms
80,896 KB
testcase_33 AC 54 ms
67,840 KB
testcase_34 AC 92 ms
105,600 KB
testcase_35 AC 70 ms
91,648 KB
testcase_36 AC 170 ms
106,872 KB
testcase_37 AC 170 ms
107,548 KB
testcase_38 AC 57 ms
73,728 KB
testcase_39 AC 157 ms
103,404 KB
testcase_40 AC 43 ms
60,032 KB
testcase_41 AC 69 ms
88,064 KB
testcase_42 AC 56 ms
74,624 KB
testcase_43 AC 97 ms
104,320 KB
testcase_44 AC 125 ms
106,932 KB
testcase_45 AC 131 ms
103,424 KB
testcase_46 AC 42 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
def Z_algorithm(s):
    n = len(s)
    Z = [0] * n  # z[i] = sum(s[0::n - i], s[i::n])
    Z[0] = n
    i, j = 1, 0
    while i < n:
        # 共通部分を見つけるパート
        while i + j < n and s[j] == s[i + j]:
            j += 1
        Z[i] = j

        if j == 0:
            i += 1
            continue
        # 計算の再利用パート
        # k + Z[k] < j なら再利用できる
        k = 1
        while k < j and k + Z[k] < j:
            Z[i + k] = Z[k]
            k += 1
        # k個先まで見たのでk個先にバトンを渡す
        i += k
        j -= k
    return Z

n,k = na()
a = na()
b = na()

if k <= n-2:
    if sorted(a) == sorted(b):
        Yes()
    else:
        No()
elif k == n:
    if a == b or b == a[::-1]:
        Yes()
    else:
        No()
elif k > n:
    if a == b:
        Yes()
    else:
        No()

else:
    S = a + a + b + b
    z = Z_algorithm(S)
    for i in range(n*2, n*4):
        if z[i] >= n:
            Yes()
            exit()
    No()
0