結果
問題 | No.1425 Yet Another Cyclic Shifts Sorting |
ユーザー | roaris |
提出日時 | 2021-03-13 00:12:18 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 161 ms / 2,000 ms |
コード長 | 628 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 131,460 KB |
最終ジャッジ日時 | 2024-10-14 16:29:19 |
合計ジャッジ時間 | 5,566 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 48 |
ソースコード
import sys input = sys.stdin.readline N = int(input()) A = list(map(int, input().split())) if A==list(sorted(A)): print(0) exit() down = [0, 0] for i in range(N-1): down.append(down[-1]+(1 if A[i]>A[i+1] else 0)) M = [0] for i in range(N): M.append(max(M[-1], A[i])) m = min(A) if down[N]==1: for i in range(N-1): if A[i]>A[i+1] and A[i+1]==m and A[-1]<=A[0]: print(1) exit() for i in range(N-1, 0, -1): if i==N-1 or A[i]<=A[i+1]: if down[i]==1 and M[i]<=A[i] and A[0]>=A[i-1]: print(1) exit() else: break print(2)