結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー shotoyooshotoyoo
提出日時 2022-09-17 00:26:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 126,940 KB
最終ジャッジ日時 2024-06-01 14:39:25
合計ジャッジ時間 6,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,656 KB
testcase_01 AC 42 ms
54,528 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 43 ms
54,400 KB
testcase_04 AC 46 ms
54,656 KB
testcase_05 AC 42 ms
54,272 KB
testcase_06 AC 42 ms
54,144 KB
testcase_07 AC 42 ms
54,656 KB
testcase_08 AC 43 ms
54,400 KB
testcase_09 AC 43 ms
54,528 KB
testcase_10 AC 46 ms
54,400 KB
testcase_11 AC 42 ms
54,620 KB
testcase_12 AC 42 ms
54,400 KB
testcase_13 AC 44 ms
54,400 KB
testcase_14 AC 42 ms
54,400 KB
testcase_15 AC 42 ms
54,272 KB
testcase_16 AC 42 ms
54,400 KB
testcase_17 AC 42 ms
54,528 KB
testcase_18 AC 43 ms
54,144 KB
testcase_19 AC 42 ms
54,400 KB
testcase_20 AC 42 ms
54,400 KB
testcase_21 AC 43 ms
54,144 KB
testcase_22 AC 87 ms
102,592 KB
testcase_23 AC 54 ms
71,168 KB
testcase_24 AC 52 ms
69,632 KB
testcase_25 AC 90 ms
105,700 KB
testcase_26 AC 102 ms
100,420 KB
testcase_27 AC 103 ms
101,320 KB
testcase_28 AC 132 ms
118,068 KB
testcase_29 AC 74 ms
85,120 KB
testcase_30 AC 67 ms
79,872 KB
testcase_31 AC 134 ms
120,312 KB
testcase_32 AC 64 ms
78,976 KB
testcase_33 AC 53 ms
65,664 KB
testcase_34 AC 69 ms
82,816 KB
testcase_35 AC 130 ms
117,256 KB
testcase_36 AC 119 ms
113,920 KB
testcase_37 AC 60 ms
71,936 KB
testcase_38 AC 165 ms
126,340 KB
testcase_39 AC 51 ms
64,000 KB
testcase_40 AC 139 ms
122,548 KB
testcase_41 AC 80 ms
85,248 KB
testcase_42 AC 88 ms
91,008 KB
testcase_43 AC 52 ms
65,664 KB
testcase_44 AC 61 ms
71,424 KB
testcase_45 AC 165 ms
126,940 KB
testcase_46 AC 166 ms
125,932 KB
testcase_47 AC 166 ms
126,808 KB
testcase_48 AC 165 ms
126,428 KB
testcase_49 AC 167 ms
126,424 KB
testcase_50 AC 42 ms
54,144 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