結果

問題 No.930 数列圧縮
ユーザー stng
提出日時 2022-08-15 11:36:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,720 KB
最終ジャッジ日時 2024-10-02 00:09:51
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 13
権限があれば一括ダウンロードができます

ソースコード

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(a[idx])
                    break
        else:
            d.append(a[idx])
        idx += 1

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