結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 637 ms
31,104 KB
testcase_08 AC 289 ms
20,608 KB
testcase_09 AC 599 ms
29,952 KB
testcase_10 AC 334 ms
22,016 KB
testcase_11 AC 437 ms
25,216 KB
testcase_12 AC 727 ms
33,920 KB
testcase_13 AC 724 ms
33,920 KB
testcase_14 AC 731 ms
33,792 KB
testcase_15 AC 720 ms
33,920 KB
testcase_16 AC 721 ms
33,920 KB
testcase_17 AC 723 ms
33,920 KB
testcase_18 AC 732 ms
33,792 KB
testcase_19 AC 717 ms
33,920 KB
testcase_20 AC 730 ms
33,920 KB
testcase_21 AC 726 ms
33,920 KB
testcase_22 AC 500 ms
28,288 KB
testcase_23 AC 508 ms
28,288 KB
testcase_24 AC 596 ms
49,256 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