結果

問題 No.1373 Directed Operations
ユーザー wotsushiwotsushi
提出日時 2020-11-04 22:12:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,132 KB
最終ジャッジ日時 2024-07-22 10:27:37
合計ジャッジ時間 6,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,496 KB
testcase_01 AC 37 ms
10,624 KB
testcase_02 AC 253 ms
25,856 KB
testcase_03 AC 129 ms
25,728 KB
testcase_04 AC 152 ms
26,236 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 407 ms
26,464 KB
testcase_07 AC 39 ms
11,008 KB
testcase_08 AC 65 ms
12,584 KB
testcase_09 AC 335 ms
26,264 KB
testcase_10 AC 237 ms
23,740 KB
testcase_11 AC 77 ms
14,208 KB
testcase_12 AC 235 ms
23,468 KB
testcase_13 AC 51 ms
12,416 KB
testcase_14 AC 479 ms
29,076 KB
testcase_15 AC 407 ms
26,612 KB
testcase_16 AC 462 ms
29,132 KB
testcase_17 AC 231 ms
22,532 KB
testcase_18 AC 137 ms
17,536 KB
testcase_19 AC 191 ms
16,944 KB
testcase_20 AC 241 ms
19,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import re

lines = []
for line in sys.stdin:
    lines.append(line)
pos_int = r"[1-9]\d*"
assert len(lines) == 2
assert re.fullmatch(fr"{pos_int}\n", lines[0])
N = int(lines[0])
assert 2 <= N <= 10 ** 5
assert re.fullmatch(fr"({pos_int} )*{pos_int}\n", lines[1])
a = list(map(int, lines[1].split()))
assert len(a) == N - 1
assert all(1 <= a[i] <= N - 1 for i in range(N - 1))

p = [(0, 0)] + sorted((x, i) for i, x in enumerate(a, 1))
x = [0 for _ in range(N)]
for i in range(1, N):
    if p[i][0] > i:
        print("NO")
        exit()
    x[p[i][1]] = (i + 1) - p[i][0]
print("YES")
for i in range(1, N):
    print(x[i])
0