結果

問題 No.930 数列圧縮
ユーザー stng
提出日時 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
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
a = [int(i) for i in input().split()]

now = a[0]
ans = []
idx = 1
d = deque()
for i in range(n*10):
    if idx >= n:
        break
    if a[idx] == 0:
        idx += 1
        continue
    if now < a[idx]:
        ans.append(a[idx])
        a[idx] = 0
    else:
        if idx+1 >= n:
            break
        if a[idx] < a[idx+1]:
            ans.append(a[idx])
            a[idx] = 0
            while len(d):
                tmp = d.pop()
                if tmp < a[idx+1]:
                    ans.append(tmp)
                else:
                    d.append(tmp)
                    break
        else:
            d.append(a[idx])
        idx += 1

if len(ans) != n-1:
    print("No")
else:
    print("Yes")
    print(*ans)
0