結果

問題 No.806 木を道に
ユーザー ntudantuda
提出日時 2023-12-31 21:09:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 120,228 KB
最終ジャッジ日時 2024-09-27 17:11:54
合計ジャッジ時間 6,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,660 KB
testcase_01 AC 44 ms
52,464 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
52,136 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 40 ms
52,744 KB
testcase_08 AC 40 ms
52,744 KB
testcase_09 AC 39 ms
52,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 149 ms
88,824 KB
testcase_25 AC 179 ms
95,264 KB
testcase_26 AC 116 ms
83,800 KB
testcase_27 AC 215 ms
120,228 KB
testcase_28 AC 86 ms
77,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
UV = [list(map(int, input().split())) for _ in range(N - 1)]
D = [0] * N
E = [[] for _ in range(N)]
for u, v in UV:
    u -= 1
    v -= 1
    E[u].append(v)
    E[v].append(u)

def bfs(a):
    q = [a]
    cnt = 0
    nv = [True] * N
    nv[a] = False
    while q:
        q2 = []
        lastq = q[:]
        while q:
            x = q.pop(-1)
            for y in E[x]:
                if nv[y]:
                    nv[y] = False
                    q2.append(y)
        q, q2 = q2, q
        cnt += 1
    return (cnt, lastq)

cnt, lastq = bfs(0)
cnt, lastq = bfs(lastq[0])
print(N - cnt)
0