結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー shotoyooshotoyoo
提出日時 2022-09-17 00:26:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 126,720 KB
最終ジャッジ日時 2024-12-21 23:44:40
合計ジャッジ時間 5,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,400 KB
testcase_01 AC 41 ms
54,528 KB
testcase_02 AC 43 ms
54,144 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 40 ms
54,528 KB
testcase_05 AC 40 ms
54,272 KB
testcase_06 AC 39 ms
54,016 KB
testcase_07 AC 41 ms
54,400 KB
testcase_08 AC 44 ms
54,008 KB
testcase_09 AC 43 ms
54,144 KB
testcase_10 AC 41 ms
54,144 KB
testcase_11 AC 41 ms
54,528 KB
testcase_12 AC 40 ms
54,272 KB
testcase_13 AC 42 ms
54,528 KB
testcase_14 AC 40 ms
54,400 KB
testcase_15 AC 41 ms
54,144 KB
testcase_16 AC 43 ms
54,272 KB
testcase_17 AC 43 ms
54,656 KB
testcase_18 AC 42 ms
54,144 KB
testcase_19 AC 41 ms
54,144 KB
testcase_20 AC 43 ms
54,528 KB
testcase_21 AC 42 ms
54,416 KB
testcase_22 AC 91 ms
102,400 KB
testcase_23 AC 55 ms
71,168 KB
testcase_24 AC 54 ms
69,760 KB
testcase_25 AC 95 ms
105,324 KB
testcase_26 AC 105 ms
100,356 KB
testcase_27 AC 107 ms
100,964 KB
testcase_28 AC 135 ms
117,944 KB
testcase_29 AC 76 ms
84,992 KB
testcase_30 AC 70 ms
79,232 KB
testcase_31 AC 135 ms
119,880 KB
testcase_32 AC 67 ms
78,592 KB
testcase_33 AC 52 ms
65,792 KB
testcase_34 AC 71 ms
82,688 KB
testcase_35 AC 133 ms
116,900 KB
testcase_36 AC 126 ms
113,492 KB
testcase_37 AC 63 ms
71,808 KB
testcase_38 AC 167 ms
126,352 KB
testcase_39 AC 51 ms
63,872 KB
testcase_40 AC 141 ms
122,880 KB
testcase_41 AC 81 ms
85,120 KB
testcase_42 AC 90 ms
90,880 KB
testcase_43 AC 53 ms
65,792 KB
testcase_44 AC 62 ms
70,784 KB
testcase_45 AC 164 ms
126,560 KB
testcase_46 AC 164 ms
125,924 KB
testcase_47 AC 164 ms
126,720 KB
testcase_48 AC 165 ms
126,316 KB
testcase_49 AC 169 ms
126,660 KB
testcase_50 AC 42 ms
54,528 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:
    l = 0
    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