結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー sgswsgsw
提出日時 2021-08-15 00:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 107,540 KB
最終ジャッジ日時 2024-10-06 04:48:30
合計ジャッジ時間 5,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,268 KB
testcase_01 AC 39 ms
53,636 KB
testcase_02 AC 42 ms
53,164 KB
testcase_03 AC 38 ms
51,944 KB
testcase_04 AC 39 ms
52,348 KB
testcase_05 AC 38 ms
53,560 KB
testcase_06 AC 37 ms
52,232 KB
testcase_07 AC 38 ms
52,612 KB
testcase_08 AC 39 ms
52,444 KB
testcase_09 AC 38 ms
52,184 KB
testcase_10 AC 38 ms
53,096 KB
testcase_11 AC 38 ms
51,816 KB
testcase_12 AC 38 ms
53,688 KB
testcase_13 AC 38 ms
53,052 KB
testcase_14 AC 38 ms
53,228 KB
testcase_15 AC 39 ms
54,164 KB
testcase_16 AC 38 ms
53,160 KB
testcase_17 AC 39 ms
52,008 KB
testcase_18 AC 39 ms
52,332 KB
testcase_19 AC 37 ms
52,948 KB
testcase_20 AC 38 ms
53,412 KB
testcase_21 AC 38 ms
53,592 KB
testcase_22 AC 85 ms
101,236 KB
testcase_23 AC 50 ms
68,820 KB
testcase_24 AC 48 ms
67,148 KB
testcase_25 AC 87 ms
104,608 KB
testcase_26 AC 99 ms
101,768 KB
testcase_27 AC 103 ms
106,304 KB
testcase_28 AC 118 ms
105,112 KB
testcase_29 AC 71 ms
82,248 KB
testcase_30 AC 66 ms
78,020 KB
testcase_31 AC 119 ms
105,196 KB
testcase_32 AC 68 ms
81,400 KB
testcase_33 AC 53 ms
64,972 KB
testcase_34 AC 71 ms
84,256 KB
testcase_35 AC 108 ms
107,540 KB
testcase_36 AC 123 ms
102,200 KB
testcase_37 AC 67 ms
72,808 KB
testcase_38 AC 157 ms
106,688 KB
testcase_39 AC 55 ms
64,936 KB
testcase_40 AC 131 ms
104,572 KB
testcase_41 AC 86 ms
84,024 KB
testcase_42 AC 98 ms
89,348 KB
testcase_43 AC 56 ms
67,948 KB
testcase_44 AC 65 ms
72,896 KB
testcase_45 AC 157 ms
106,788 KB
testcase_46 AC 155 ms
106,408 KB
testcase_47 AC 155 ms
106,920 KB
testcase_48 AC 155 ms
106,672 KB
testcase_49 AC 153 ms
106,524 KB
testcase_50 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

'''
    Python3(PyPy3) Template for Programming-Contest.

    author : sgsw

    generated : 2021/08/14   
    when : 23:49:30

'''


def input():
    return sys.stdin.readline().rstrip()


DXY = [(0, -1), (1, 0), (0, 1), (-1, 0)]  # LDRU
mod = 998244353
inf = 1 << 64

def main():
    n = int(input())
    a = list(map(int, input().split()))
    if sorted(a) == a:
        print(0)
    else:
        #case 1
        is_sorted = [False]*(n)
        for i in reversed(range(0, n)):
            if i == n - 1:
                is_sorted[i] = True
            else:
                if is_sorted[i + 1] == True and (a[i] <= a[i + 1]):
                    is_sorted[i] = True

        dp = [0]*(n)
        maxv = a.copy()

        for l in range(1, n):
            maxv[l] = max(maxv[l - 1], maxv[l])
            if l == 1:
                dp[l] = (not a[0] <= a[1]) + (not a[1] <= a[0])
            else:
                dp[l] = (dp[l - 1] - (not a[l - 1] <= a[0])) + \
                    (not a[l - 1] <= a[l]) + (not a[l] <= a[0])

        for i in range(1, n):
            if i != n - 1:
                if maxv[i] <= a[i + 1] and is_sorted[i + 1] and dp[i] == 1:
                    print(1)
                    return
            else:
                if dp[i] == 1:
                    print(1)
                    return
        print(2)

    return 0


if __name__ == "__main__":
    main()
0