結果

問題 No.930 数列圧縮
ユーザー H20H20
提出日時 2022-01-14 11:57:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 90,924 KB
最終ジャッジ日時 2024-11-19 01:37:01
合計ジャッジ時間 4,604 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,832 KB
testcase_01 AC 39 ms
54,100 KB
testcase_02 AC 39 ms
54,460 KB
testcase_03 AC 41 ms
54,632 KB
testcase_04 AC 41 ms
55,756 KB
testcase_05 AC 51 ms
66,088 KB
testcase_06 AC 39 ms
54,772 KB
testcase_07 AC 59 ms
70,064 KB
testcase_08 AC 84 ms
86,048 KB
testcase_09 AC 102 ms
86,760 KB
testcase_10 AC 97 ms
85,252 KB
testcase_11 AC 90 ms
85,420 KB
testcase_12 AC 100 ms
88,212 KB
testcase_13 AC 50 ms
70,952 KB
testcase_14 AC 51 ms
73,232 KB
testcase_15 AC 90 ms
90,924 KB
testcase_16 AC 129 ms
90,856 KB
testcase_17 AC 108 ms
90,480 KB
testcase_18 AC 105 ms
90,032 KB
testcase_19 AC 113 ms
90,280 KB
testcase_20 AC 107 ms
90,140 KB
testcase_21 AC 102 ms
90,180 KB
testcase_22 AC 37 ms
54,708 KB
testcase_23 AC 91 ms
90,920 KB
testcase_24 AC 37 ms
55,500 KB
testcase_25 AC 40 ms
53,632 KB
testcase_26 AC 39 ms
54,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
A = list(map(int,input().split()))
if A[0]>A[-1]:
    print('No')
    exit()
print('Yes')
d = collections.deque()
ANS = []
for a in A:
    d.append(a)
    while len(d)>1 and d[-2]<d[-1]:
        if d[-2]<d[-1] and len(d)>2:
            v = d.pop()
            v2 = d.pop()
            ANS.append(v2)
            d.append(v)
        if d[-2]<d[1] and len(d)==2:
            v = d.pop()
            ANS.append(v)
print(*ANS)
0