結果
問題 | No.930 数列圧縮 |
ユーザー |
|
提出日時 | 2022-08-15 11:52:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 109 ms / 2,000 ms |
コード長 | 780 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 82,300 KB |
実行使用メモリ | 95,004 KB |
最終ジャッジ日時 | 2024-10-02 00:22:08 |
合計ジャッジ時間 | 3,990 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
from collections import dequen = int(input())a = [int(i) for i in input().split()]now = a[0]ans = []idx = 1d = deque()for i in range(n*10):if idx >= n:breakif a[idx] == 0:idx += 1continueif now < a[idx]:ans.append(a[idx])a[idx] = 0else:if idx+1 >= n:breakif a[idx] < a[idx+1]:ans.append(a[idx])a[idx] = 0while len(d):tmp = d.pop()if tmp < a[idx+1]:ans.append(tmp)else:d.append(tmp)breakelse:d.append(a[idx])idx += 1if len(ans) != n-1:print("No")else:print("Yes")print(*ans)