結果

問題 No.1373 Directed Operations
ユーザー nephrologistnephrologist
提出日時 2021-02-05 21:38:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 99,712 KB
最終ジャッジ日時 2024-07-02 11:51:57
合計ジャッジ時間 4,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 98 ms
99,072 KB
testcase_03 WA -
testcase_04 AC 56 ms
79,744 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 277 ms
99,456 KB
testcase_07 AC 54 ms
67,840 KB
testcase_08 AC 73 ms
76,800 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 52 ms
75,264 KB
testcase_13 AC 37 ms
60,800 KB
testcase_14 AC 299 ms
99,072 KB
testcase_15 AC 270 ms
96,384 KB
testcase_16 AC 286 ms
99,200 KB
testcase_17 AC 129 ms
93,312 KB
testcase_18 AC 78 ms
85,760 KB
testcase_19 AC 139 ms
83,712 KB
testcase_20 AC 177 ms
87,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline
n = int(input())

A = list(map(int, input().split()))

memo = [0] * (n + 1)

for a in A:
    memo[a] += 1

capacity = 0
for i in range(n):
    capacity += 1
    capacity -= memo[-(i + 1)]
    if capacity < 0:
        print("NO")
        exit()

used = [0] * (n + 1)
now = 2
ans = [-1] * (n - 1)
kouho = []
for (idx, a) in enumerate(A):
    kouho.append((a, idx))
kouho.sort()
for a, idx in kouho:
    ans[idx] = now - a
    now += 1
print("YES")
for a in ans:
    print(a)

0