結果

問題 No.1373 Directed Operations
ユーザー lloyzlloyz
提出日時 2023-08-03 20:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,920 KB
最終ジャッジ日時 2024-10-13 17:38:25
合計ジャッジ時間 6,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 116 ms
96,384 KB
testcase_03 AC 102 ms
96,384 KB
testcase_04 AC 103 ms
97,920 KB
testcase_05 AC 39 ms
51,456 KB
testcase_06 AC 344 ms
97,792 KB
testcase_07 AC 61 ms
67,840 KB
testcase_08 AC 85 ms
77,440 KB
testcase_09 AC 327 ms
97,664 KB
testcase_10 AC 279 ms
94,592 KB
testcase_11 AC 104 ms
78,592 KB
testcase_12 AC 282 ms
94,080 KB
testcase_13 AC 79 ms
76,160 KB
testcase_14 AC 363 ms
97,792 KB
testcase_15 AC 304 ms
94,336 KB
testcase_16 AC 359 ms
97,280 KB
testcase_17 AC 153 ms
91,392 KB
testcase_18 AC 87 ms
84,992 KB
testcase_19 AC 162 ms
82,944 KB
testcase_20 AC 208 ms
87,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

AI = [(A[i], i) for i in range(n - 1)]
AI.sort(key=lambda x: (x[0], x[1]))
ANS = [-1 for _ in range(n - 1)]
G = [-1 for _ in range(n + 1)]
for i in range(2, n + 1):
    d, idx = AI[i - 2]
    if i - d <= 0:
        print("NO")
        exit()
    ANS[idx] = i - d
print("YES")
print(*ANS, sep='\n')
0