結果

問題 No.930 数列圧縮
ユーザー tassei903tassei903
提出日時 2021-10-10 23:51:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 958 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-09-14 20:06:31
合計ジャッジ時間 5,782 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 43 ms
52,352 KB
testcase_04 AC 46 ms
53,376 KB
testcase_05 AC 62 ms
64,128 KB
testcase_06 WA -
testcase_07 AC 64 ms
65,792 KB
testcase_08 AC 109 ms
96,384 KB
testcase_09 AC 110 ms
96,128 KB
testcase_10 AC 107 ms
96,384 KB
testcase_11 AC 107 ms
96,000 KB
testcase_12 AC 113 ms
98,688 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 119 ms
108,416 KB
testcase_16 AC 120 ms
102,400 KB
testcase_17 AC 120 ms
104,448 KB
testcase_18 AC 118 ms
101,120 KB
testcase_19 AC 119 ms
101,504 KB
testcase_20 AC 122 ms
103,936 KB
testcase_21 AC 118 ms
98,560 KB
testcase_22 AC 43 ms
51,712 KB
testcase_23 AC 114 ms
101,504 KB
testcase_24 AC 43 ms
51,712 KB
testcase_25 AC 43 ms
52,224 KB
testcase_26 AC 43 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


n = ni()
a = [i-1 for i in na()]
b = n-1
z = []
ans = []

v = [0 for i in range(n)]
def f(b):
    for j in range(b-1,-1,-1):
        if v[j]:continue
        return j
    return -1


for i in range(n):
    #print(i, a[i], b)
    v[a[i]] = 1
    if a[i]==b:
        if len(z)==0:
            No()
            exit()
        #print(i)
        for j in range(len(z)-1):
            ans.append(z.pop()+1)
        ans.append(b+1)
        b = f(b)
        if i!=n-1 and len(z)!=0 and b==z[0]:
            No()
            exit()
    else:
        z.append(a[i])
Yes()
print(*ans)
0