結果
問題 | No.930 数列圧縮 |
ユーザー | None |
提出日時 | 2021-03-18 05:38:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 624 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 332,792 KB |
最終ジャッジ日時 | 2024-11-15 23:27:34 |
合計ジャッジ時間 | 11,834 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 131 ms
106,480 KB |
testcase_16 | TLE | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 39 ms
52,096 KB |
testcase_23 | WA | - |
testcase_24 | AC | 40 ms
52,096 KB |
testcase_25 | AC | 40 ms
51,712 KB |
testcase_26 | WA | - |
ソースコード
N=int(input()) A=list(map(int, input().split())) # rank=[2,4,1,...]: A[2]<A[4]<A[1],... rank,sortedA=zip(*sorted(enumerate(A),key=lambda x:x[1],reverse=True)) rank=list(rank) res=[] r=N M=0 j_max=-1 while rank: i=rank.pop() if i>=r: continue if (r!=N and A[i]>=A[-1]) or i==N-1: print("No") exit() for j in range(i+1,r): if M<A[j]: M=A[j] if j_max>=r: res.append(j_max+1) j_max=j for j in range(i,r): if j!=j_max: res.append(j+1) A=A[:i] A.append(M) r=len(A)-1 print("Yes") print(*res)