結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー shotoyooshotoyoo
提出日時 2022-09-17 00:19:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,540 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 126,936 KB
最終ジャッジ日時 2024-06-01 14:39:02
合計ジャッジ時間 5,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,212 KB
testcase_01 AC 42 ms
54,656 KB
testcase_02 AC 43 ms
54,656 KB
testcase_03 AC 43 ms
54,656 KB
testcase_04 AC 43 ms
54,272 KB
testcase_05 WA -
testcase_06 AC 42 ms
54,528 KB
testcase_07 AC 44 ms
54,656 KB
testcase_08 AC 42 ms
54,656 KB
testcase_09 AC 42 ms
54,528 KB
testcase_10 AC 42 ms
54,400 KB
testcase_11 AC 41 ms
54,144 KB
testcase_12 AC 42 ms
54,208 KB
testcase_13 AC 41 ms
54,656 KB
testcase_14 AC 42 ms
54,656 KB
testcase_15 AC 42 ms
54,400 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 42 ms
54,400 KB
testcase_19 AC 43 ms
54,656 KB
testcase_20 AC 41 ms
54,400 KB
testcase_21 AC 42 ms
54,400 KB
testcase_22 AC 87 ms
102,528 KB
testcase_23 AC 53 ms
70,944 KB
testcase_24 AC 52 ms
69,632 KB
testcase_25 AC 91 ms
105,364 KB
testcase_26 AC 101 ms
100,324 KB
testcase_27 AC 104 ms
101,124 KB
testcase_28 AC 132 ms
117,964 KB
testcase_29 AC 75 ms
85,248 KB
testcase_30 AC 69 ms
79,360 KB
testcase_31 AC 134 ms
120,324 KB
testcase_32 AC 65 ms
79,232 KB
testcase_33 AC 54 ms
65,664 KB
testcase_34 AC 69 ms
82,816 KB
testcase_35 AC 128 ms
117,416 KB
testcase_36 AC 120 ms
114,176 KB
testcase_37 AC 62 ms
72,192 KB
testcase_38 AC 164 ms
126,232 KB
testcase_39 AC 50 ms
63,744 KB
testcase_40 AC 138 ms
122,880 KB
testcase_41 AC 81 ms
85,376 KB
testcase_42 AC 88 ms
91,392 KB
testcase_43 AC 51 ms
65,920 KB
testcase_44 AC 61 ms
71,168 KB
testcase_45 AC 166 ms
126,936 KB
testcase_46 AC 163 ms
126,172 KB
testcase_47 AC 165 ms
126,688 KB
testcase_48 AC 165 ms
126,476 KB
testcase_49 AC 165 ms
126,564 KB
testcase_50 AC 41 ms
54,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input())
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

def z_algorithm(s):
    """
    各iについてs[0..n)とs[i..n)のLCP(Longest Common Prefix)の長さを求める
    s: str or (list of int )
    """
    n = len(s)
    if n==0:
        return []
    z = [None]*n
    z[0] = 0
    j = 0
    for i in range(1,n):
        k = 0 if j + z[j] <= i else min(j+z[j]-i, z[i-j])
        z[i] = k
        while i+k<n and s[k]==s[i+k]:
            k += 1
        z[i] = k
        if j+z[j] < i+z[i]:
            j = i
    z[0] = n
    return z

n = int(input())
a = list(map(int, input().split()))
sa = sorted(a)
if a==sa:
    ans = 0
else:
    for l in range(n):
        if a[l]!=sa[l]:
            break
    for r in range(n)[::-1]:
        if a[r]!=sa[r]:
            break
    aa = a[l:r+1] + a[l:r+1]
    bb = sa[l:r+1]
    cc = bb + [-1] + aa
    res = z_algorithm(cc)
    for i in range(len(bb)+1, len(res)):
        if res[i]==len(bb):
            ans = 1
            break
    else:
        ans = 2
print(ans)
0