結果

問題 No.806 木を道に
ユーザー tobusakanatobusakana
提出日時 2022-11-27 15:49:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 97,076 KB
最終ジャッジ日時 2024-10-04 04:51:50
合計ジャッジ時間 6,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 42 ms
52,864 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 107 ms
78,336 KB
testcase_11 AC 106 ms
77,824 KB
testcase_12 AC 212 ms
86,548 KB
testcase_13 AC 182 ms
83,980 KB
testcase_14 AC 208 ms
85,492 KB
testcase_15 AC 215 ms
86,528 KB
testcase_16 AC 134 ms
80,080 KB
testcase_17 AC 197 ms
85,376 KB
testcase_18 AC 107 ms
77,568 KB
testcase_19 AC 122 ms
78,208 KB
testcase_20 AC 192 ms
85,048 KB
testcase_21 AC 146 ms
81,444 KB
testcase_22 AC 238 ms
88,052 KB
testcase_23 AC 239 ms
88,064 KB
testcase_24 AC 111 ms
81,792 KB
testcase_25 AC 133 ms
84,992 KB
testcase_26 AC 96 ms
80,384 KB
testcase_27 AC 161 ms
97,076 KB
testcase_28 AC 72 ms
71,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 次数1の頂点から探索を開始し、分岐が見つかった場合、分岐数 - 1を答えに加算
# 分岐があれば、それを開始地点にくっつけるイメージ

N = int(input())
G = [[] for i in range(N)]
indegree = [0] * N
for _ in range(N - 1):
    a,b = map(int,input().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)
    indegree[a - 1] += 1
    indegree[b - 1] += 1
    
for i in range(N):
    if indegree[i] == 1:
        start = i
        break
    
stack = []
stack.append([start, -1])
ans = 0
while stack:
    v,p = stack.pop()
    routes = 0
    for child in G[v]:
        if child == p:
            continue
        routes += 1
        stack.append([child, v])
    ans += max(0, routes - 1)

print(ans)
0