結果

問題 No.1373 Directed Operations
ユーザー FromBooskaFromBooska
提出日時 2023-04-19 18:17:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 102,784 KB
最終ジャッジ日時 2024-10-14 19:00:29
合計ジャッジ時間 7,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 150 ms
102,784 KB
testcase_03 AC 114 ms
102,656 KB
testcase_04 AC 107 ms
102,016 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 445 ms
102,272 KB
testcase_07 AC 67 ms
65,536 KB
testcase_08 AC 93 ms
77,312 KB
testcase_09 AC 313 ms
101,888 KB
testcase_10 AC 288 ms
99,840 KB
testcase_11 AC 110 ms
78,976 KB
testcase_12 AC 297 ms
99,584 KB
testcase_13 AC 77 ms
68,864 KB
testcase_14 AC 453 ms
102,272 KB
testcase_15 AC 445 ms
99,840 KB
testcase_16 AC 463 ms
102,144 KB
testcase_17 AC 190 ms
96,128 KB
testcase_18 AC 101 ms
88,704 KB
testcase_19 AC 196 ms
85,248 KB
testcase_20 AC 265 ms
90,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 頂点1スタートで頂点2に達するためには絶対にa=1が必要
# 上の条件を満たしたとして、頂点2に達するためにはa = 1 or 2が必要
# その繰り返し
# Aをソートして、前から1以下、2以下、3以下、と確認

N = int(input())
A = list(map(int, input().split()))
A_with_idx = []
for i in range(N-1):
    A_with_idx.append([A[i], i])
A_with_idx.sort()    

ans = 'YES'
for i in range(N-1):
    if A_with_idx[i][0] >= i+2:
        ans = 'NO'
    else:
        A_with_idx[i].append(i+2-A_with_idx[i][0])
#print(A_with_idx)

if ans == 'NO':
    print(ans)
else:
    print(ans)
    A_with_idx.sort(key = lambda x:x[1])
    for i in range(N-1):
        print(A_with_idx[i][2])
0