結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 39 ms
52,824 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 52 ms
63,872 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 56 ms
66,560 KB
testcase_08 AC 164 ms
96,512 KB
testcase_09 AC 189 ms
100,648 KB
testcase_10 AC 157 ms
96,896 KB
testcase_11 AC 168 ms
96,240 KB
testcase_12 AC 195 ms
101,676 KB
testcase_13 AC 51 ms
69,504 KB
testcase_14 AC 53 ms
70,528 KB
testcase_15 AC 134 ms
107,048 KB
testcase_16 AC 136 ms
106,820 KB
testcase_17 AC 228 ms
107,028 KB
testcase_18 AC 229 ms
107,068 KB
testcase_19 AC 227 ms
107,436 KB
testcase_20 AC 225 ms
107,044 KB
testcase_21 AC 228 ms
107,064 KB
testcase_22 AC 39 ms
52,480 KB
testcase_23 AC 134 ms
107,372 KB
testcase_24 AC 38 ms
51,584 KB
testcase_25 AC 39 ms
51,840 KB
testcase_26 AC 40 ms
52,096 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