結果

問題 No.1373 Directed Operations
ユーザー ayaoniayaoni
提出日時 2021-02-05 22:37:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,440 KB
最終ジャッジ日時 2024-07-02 13:14:48
合計ジャッジ時間 6,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 124 ms
91,980 KB
testcase_03 AC 92 ms
91,008 KB
testcase_04 AC 88 ms
92,544 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 537 ms
93,440 KB
testcase_07 AC 63 ms
71,168 KB
testcase_08 AC 97 ms
76,928 KB
testcase_09 AC 286 ms
92,288 KB
testcase_10 AC 248 ms
89,836 KB
testcase_11 AC 93 ms
77,232 KB
testcase_12 AC 246 ms
89,600 KB
testcase_13 AC 69 ms
76,108 KB
testcase_14 AC 543 ms
93,184 KB
testcase_15 AC 476 ms
90,880 KB
testcase_16 AC 547 ms
93,056 KB
testcase_17 AC 172 ms
87,808 KB
testcase_18 AC 87 ms
86,528 KB
testcase_19 AC 228 ms
81,080 KB
testcase_20 AC 312 ms
84,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
A = LI()
SA = [(A[i],i) for i in range(N-1)]
SA.sort()

count = [0]*N
for a,i in SA:
    count[a] += 1

s = 0
for i in range(1,N):
    s += count[i]
    if s < i:
        print('NO')
        exit()

print('YES')
ANS = []
for i in range(N-1):
    a,j = SA[i]
    ANS.append((j,i+2-a))

ANS.sort()
for i in range(N-1):
    print(ANS[i][1])
0