結果

問題 No.930 数列圧縮
ユーザー NoneNone
提出日時 2021-03-18 05:58:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 107,584 KB
最終ジャッジ日時 2024-04-27 18:58:08
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,052 KB
testcase_01 AC 35 ms
52,400 KB
testcase_02 AC 31 ms
52,196 KB
testcase_03 AC 31 ms
53,832 KB
testcase_04 AC 32 ms
53,356 KB
testcase_05 AC 43 ms
65,540 KB
testcase_06 AC 32 ms
53,092 KB
testcase_07 AC 44 ms
66,460 KB
testcase_08 AC 134 ms
96,692 KB
testcase_09 AC 160 ms
100,412 KB
testcase_10 AC 133 ms
96,488 KB
testcase_11 AC 139 ms
96,368 KB
testcase_12 AC 160 ms
102,012 KB
testcase_13 AC 41 ms
69,848 KB
testcase_14 AC 44 ms
72,292 KB
testcase_15 AC 115 ms
107,584 KB
testcase_16 AC 117 ms
107,208 KB
testcase_17 AC 183 ms
106,880 KB
testcase_18 AC 191 ms
107,084 KB
testcase_19 AC 185 ms
106,976 KB
testcase_20 AC 190 ms
107,092 KB
testcase_21 AC 182 ms
106,740 KB
testcase_22 AC 33 ms
53,148 KB
testcase_23 AC 113 ms
107,336 KB
testcase_24 AC 33 ms
52,620 KB
testcase_25 AC 33 ms
52,600 KB
testcase_26 AC 32 ms
51,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
if A[0]>A[-1]:
    print("No")
    exit()


# rank=[2,4,1,...]: A[2]<A[4]<A[1],...
rank,sortedA=zip(*sorted(enumerate(A),key=lambda x:x[1],reverse=True))

rank=list(rank)

res=[]
r=N-1
while rank:
    i=rank.pop()
    if i>=r:
        continue
    for a in A[i+1:r]:
        res.append(a)
    res.append(A[i])
    r=i


print("Yes")
print(*res)
0