結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー H3PO4H3PO4
提出日時 2022-07-26 08:27:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-07-16 00:40:09
合計ジャッジ時間 5,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 37 ms
51,712 KB
testcase_16 AC 37 ms
51,968 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 38 ms
51,840 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 37 ms
51,584 KB
testcase_22 AC 78 ms
98,432 KB
testcase_23 AC 51 ms
68,096 KB
testcase_24 AC 50 ms
66,816 KB
testcase_25 AC 81 ms
101,632 KB
testcase_26 AC 97 ms
101,632 KB
testcase_27 AC 83 ms
103,424 KB
testcase_28 AC 100 ms
101,888 KB
testcase_29 AC 58 ms
74,624 KB
testcase_30 AC 53 ms
69,760 KB
testcase_31 AC 100 ms
101,736 KB
testcase_32 AC 55 ms
72,960 KB
testcase_33 AC 44 ms
60,160 KB
testcase_34 AC 59 ms
76,160 KB
testcase_35 AC 90 ms
106,880 KB
testcase_36 AC 99 ms
97,152 KB
testcase_37 AC 53 ms
66,048 KB
testcase_38 AC 138 ms
103,476 KB
testcase_39 AC 46 ms
60,032 KB
testcase_40 AC 113 ms
104,576 KB
testcase_41 AC 68 ms
76,032 KB
testcase_42 AC 75 ms
79,872 KB
testcase_43 AC 46 ms
61,184 KB
testcase_44 AC 52 ms
65,664 KB
testcase_45 AC 137 ms
103,136 KB
testcase_46 AC 140 ms
103,008 KB
testcase_47 AC 142 ms
103,380 KB
testcase_48 AC 138 ms
103,084 KB
testcase_49 AC 139 ms
103,388 KB
testcase_50 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def find_sorted_min_idx(N, A):
    SA = sorted(A)
    for i in range(N - 1, -1, -1):
        if A[i] != SA[i]:
            return i + 1
    return 0


def is_cyclic_shift(N, A):
    ct = 0
    for i in range(N - 1):
        if A[i] > A[i + 1]:
            ct += 1
    return ct == 1 and A[0] >= A[-1]


def solve(N, A):
    sorted_min_idx = find_sorted_min_idx(N, A)
    if not sorted_min_idx:
        return 0
    if is_cyclic_shift(sorted_min_idx, A[:sorted_min_idx]):
        return 1
    return 2


N = int(input())
A = list(map(int, input().split()))
print(solve(N, A))
0