結果

問題 No.930 数列圧縮
ユーザー stngstng
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,928 KB
testcase_01 AC 41 ms
54,628 KB
testcase_02 AC 42 ms
53,624 KB
testcase_03 AC 42 ms
54,200 KB
testcase_04 AC 45 ms
56,516 KB
testcase_05 AC 58 ms
65,564 KB
testcase_06 AC 49 ms
61,560 KB
testcase_07 AC 62 ms
69,112 KB
testcase_08 AC 89 ms
88,532 KB
testcase_09 AC 101 ms
88,176 KB
testcase_10 AC 98 ms
87,736 KB
testcase_11 AC 95 ms
89,196 KB
testcase_12 AC 99 ms
91,836 KB
testcase_13 AC 78 ms
80,844 KB
testcase_14 AC 78 ms
82,620 KB
testcase_15 AC 95 ms
94,752 KB
testcase_16 AC 103 ms
94,772 KB
testcase_17 AC 109 ms
87,604 KB
testcase_18 AC 108 ms
87,928 KB
testcase_19 AC 104 ms
92,464 KB
testcase_20 AC 104 ms
94,900 KB
testcase_21 AC 99 ms
95,004 KB
testcase_22 AC 43 ms
55,116 KB
testcase_23 AC 94 ms
94,712 KB
testcase_24 AC 43 ms
53,680 KB
testcase_25 AC 39 ms
54,340 KB
testcase_26 AC 38 ms
53,532 KB
権限があれば一括ダウンロードができます

ソースコード

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