結果

問題 No.1373 Directed Operations
ユーザー paruf4paruf4
提出日時 2021-02-06 09:16:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-07-02 16:51:34
合計ジャッジ時間 6,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 104 ms
91,136 KB
testcase_03 AC 81 ms
91,136 KB
testcase_04 AC 90 ms
92,160 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 472 ms
92,288 KB
testcase_07 AC 58 ms
71,680 KB
testcase_08 AC 90 ms
77,408 KB
testcase_09 AC 265 ms
92,416 KB
testcase_10 AC 225 ms
90,112 KB
testcase_11 AC 82 ms
77,484 KB
testcase_12 AC 231 ms
89,728 KB
testcase_13 AC 65 ms
76,116 KB
testcase_14 AC 514 ms
92,336 KB
testcase_15 AC 434 ms
89,984 KB
testcase_16 AC 495 ms
92,032 KB
testcase_17 AC 161 ms
87,180 KB
testcase_18 AC 84 ms
86,528 KB
testcase_19 AC 213 ms
81,280 KB
testcase_20 AC 277 ms
84,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = [(a[i],i) for i in range(n-1)]
b.sort()

c = [0]*n

for a,_ in b:
    c[a] += 1

s = 0
for i in range(1,n):
    s += c[i]
    if s < i:
        print("NO")
        exit(0)

print("YES")
res = []

for i in range(n-1):
    a,j = b[i]
    res.append((j,i+2-a))

res.sort()
for _,val in res:
    print(val)
0