結果

問題 No.1817 Reversed Edges
ユーザー hirakuhiraku
提出日時 2022-01-22 09:17:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,784 KB
最終ジャッジ日時 2024-05-05 07:48:20
合計ジャッジ時間 13,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 573 ms
29,056 KB
testcase_08 AC 285 ms
19,712 KB
testcase_09 AC 545 ms
28,032 KB
testcase_10 AC 309 ms
20,992 KB
testcase_11 AC 408 ms
23,808 KB
testcase_12 AC 686 ms
31,488 KB
testcase_13 AC 713 ms
31,488 KB
testcase_14 AC 722 ms
31,616 KB
testcase_15 AC 699 ms
31,616 KB
testcase_16 AC 694 ms
31,488 KB
testcase_17 AC 707 ms
31,488 KB
testcase_18 AC 702 ms
31,488 KB
testcase_19 AC 703 ms
31,488 KB
testcase_20 AC 726 ms
31,616 KB
testcase_21 AC 757 ms
31,488 KB
testcase_22 AC 569 ms
32,784 KB
testcase_23 AC 547 ms
29,332 KB
testcase_24 AC 567 ms
31,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
graph = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    graph[a].append(b)
    graph[b].append(a)

# 始めに頂点位置のスコアを求める。
score = 0
q = [(0, -1)]  # now, parent
while q:
    now, par = q.pop()
    if par > now:
        score += 1
    for nxt in graph[now]:
        if nxt != par:
            q.append((nxt, now))

# 今いる頂点nowから隣接する頂点nxtに移動してnow<nxtならスコア+1, now>nxtならスコア-1する
ans = [0] * n
ans[0] = score

q = [(0, -1)]  # now, parent
while q:
    now, par = q.pop()
    for nxt in graph[now]:
        if nxt != par:
            if nxt > now:
                ans[nxt] = ans[now] + 1
            else:
                ans[nxt] = ans[now] - 1
            q.append((nxt, now))

for a in ans:
    print(a)
0