結果

問題 No.1817 Reversed Edges
ユーザー AEnAEn
提出日時 2022-09-06 23:00:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,124 KB
最終ジャッジ日時 2024-11-21 23:03:44
合計ジャッジ時間 12,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 596 ms
31,104 KB
testcase_08 AC 283 ms
20,608 KB
testcase_09 AC 556 ms
29,824 KB
testcase_10 AC 300 ms
21,888 KB
testcase_11 AC 398 ms
25,088 KB
testcase_12 AC 677 ms
33,920 KB
testcase_13 AC 710 ms
33,792 KB
testcase_14 AC 687 ms
33,792 KB
testcase_15 AC 708 ms
33,792 KB
testcase_16 AC 700 ms
33,792 KB
testcase_17 AC 692 ms
33,792 KB
testcase_18 AC 694 ms
33,920 KB
testcase_19 AC 704 ms
33,920 KB
testcase_20 AC 693 ms
33,792 KB
testcase_21 AC 709 ms
33,792 KB
testcase_22 AC 493 ms
28,160 KB
testcase_23 AC 496 ms
28,160 KB
testcase_24 AC 577 ms
49,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)

N = int(input())
G = [list() for _ in range(N)]
for i in range(N-1):
    a, b = map(int,input().split())
    a-=1;b-=1
    G[a].append(b)
    G[b].append(a)

cnt = 0
def dfs(v, p):
    global cnt
    for nex in G[v]:
        if nex==p:
            continue
        if nex<v:
            cnt += 1
        dfs(nex, v)

def dfs_ans(v, p):
    for nex in G[v]:
        if nex==p:
            continue
        if nex>v:
            res[nex] = res[v]+1
        else:
            res[nex] = res[v]-1
        dfs_ans(nex, v)
dfs(0, -1)
res = [0]*N
res[0] = cnt
dfs_ans(0, -1)
print(*res, sep='\n')
0