結果

問題 No.1373 Directed Operations
ユーザー FromBooskaFromBooska
提出日時 2023-02-23 09:53:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 103,040 KB
最終ジャッジ日時 2024-07-23 07:21:33
合計ジャッジ時間 7,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 141 ms
103,040 KB
testcase_03 AC 113 ms
102,784 KB
testcase_04 AC 117 ms
102,016 KB
testcase_05 AC 43 ms
52,480 KB
testcase_06 AC 475 ms
102,108 KB
testcase_07 AC 71 ms
66,304 KB
testcase_08 AC 98 ms
77,824 KB
testcase_09 AC 449 ms
102,280 KB
testcase_10 AC 369 ms
100,156 KB
testcase_11 AC 127 ms
78,936 KB
testcase_12 AC 368 ms
99,456 KB
testcase_13 AC 78 ms
68,864 KB
testcase_14 AC 498 ms
102,464 KB
testcase_15 AC 441 ms
100,708 KB
testcase_16 AC 508 ms
102,400 KB
testcase_17 AC 192 ms
96,160 KB
testcase_18 AC 107 ms
88,960 KB
testcase_19 AC 225 ms
85,408 KB
testcase_20 AC 285 ms
90,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# おっと有向辺だった
# しかも1から全頂点にたどり着けるかという問題
# 完全に問題読み違えてた
# Union Findでもない
# 辺をソートして、1がなければ2にたどり着けない
# 2までたどり着いたら、1か2がなければ3にたどり着けない
# これを繰り返してNまで行ければYES
# グラフ構築では、行先から辺の数を引けば起点が決まる

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(1, N):
    if A_with_idx[i-1][0] > i:
        ans = 'NO'
        break
    else:
        A_with_idx[i-1].append(i+1-A_with_idx[i-1][0])
A_with_idx.sort(key = lambda x:x[1])
    
#print(ans)
#print(A_with_idx)

if ans == 'NO':
    print(ans)
else: 
    print(ans)
    for a, b, c in A_with_idx:
        print(c)
0