結果
問題 | No.930 数列圧縮 |
ユーザー | nep_pudding3 |
提出日時 | 2019-11-22 22:58:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 521 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 24,280 KB |
最終ジャッジ日時 | 2024-10-11 04:35:01 |
合計ジャッジ時間 | 5,774 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | AC | 30 ms
10,880 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 47 ms
15,776 KB |
testcase_14 | AC | 51 ms
16,812 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 30 ms
10,752 KB |
testcase_23 | RE | - |
testcase_24 | AC | 29 ms
10,496 KB |
testcase_25 | AC | 30 ms
10,752 KB |
testcase_26 | AC | 30 ms
10,752 KB |
ソースコード
N = int(input()) a = list(map(int,input().split())) if a[0] > a[-1]: print("No") exit() print('Yes') l = [0]+[i for i in range(N-1)] r = [i for i in range(1,N)]+[N-1] ans = [] def func(x): if x == 0 or x == N-1: return if a[l[x]] < a[x]: ans.append(a[x]) r[l[x]] = r[x] l[r[x]] = l[x] if a[x] < a[r[x]]: ans.append(a[x]) r[l[x]] = r[x] l[r[x]] = l[x] func(l[x]) func(r[x]) func(1) for i in ans: print(i,end=" ") print(a[0])