結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー sgswsgsw
提出日時 2021-08-15 00:36:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,409 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-10-06 04:45:23
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 34 ms
52,480 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 35 ms
52,224 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 35 ms
52,224 KB
testcase_16 AC 35 ms
52,224 KB
testcase_17 AC 34 ms
52,480 KB
testcase_18 AC 35 ms
52,224 KB
testcase_19 AC 35 ms
52,224 KB
testcase_20 AC 36 ms
52,480 KB
testcase_21 AC 36 ms
52,224 KB
testcase_22 AC 82 ms
101,760 KB
testcase_23 AC 51 ms
68,736 KB
testcase_24 AC 47 ms
67,072 KB
testcase_25 AC 83 ms
104,832 KB
testcase_26 AC 97 ms
101,760 KB
testcase_27 AC 99 ms
106,368 KB
testcase_28 AC 115 ms
105,280 KB
testcase_29 AC 69 ms
81,408 KB
testcase_30 AC 64 ms
76,288 KB
testcase_31 AC 113 ms
105,036 KB
testcase_32 AC 66 ms
80,000 KB
testcase_33 AC 52 ms
65,152 KB
testcase_34 AC 69 ms
83,584 KB
testcase_35 AC 104 ms
107,520 KB
testcase_36 AC 119 ms
102,656 KB
testcase_37 AC 64 ms
73,344 KB
testcase_38 AC 153 ms
106,884 KB
testcase_39 AC 53 ms
64,768 KB
testcase_40 AC 128 ms
104,448 KB
testcase_41 AC 80 ms
83,584 KB
testcase_42 AC 94 ms
89,728 KB
testcase_43 AC 55 ms
66,432 KB
testcase_44 AC 65 ms
73,088 KB
testcase_45 AC 156 ms
107,020 KB
testcase_46 AC 154 ms
106,452 KB
testcase_47 AC 152 ms
107,320 KB
testcase_48 AC 151 ms
106,524 KB
testcase_49 AC 152 ms
106,780 KB
testcase_50 AC 36 ms
52,224 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

# from atcoder.segtree import SegTree


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] = 1
            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