結果
問題 | No.277 根掘り葉掘り |
ユーザー | Tawara |
提出日時 | 2015-09-05 01:45:05 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 323 bytes |
コンパイル時間 | 302 ms |
コンパイル使用メモリ | 76,800 KB |
実行使用メモリ | 132,744 KB |
最終ジャッジ日時 | 2024-07-19 03:31:27 |
合計ジャッジ時間 | 6,117 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
80,896 KB |
testcase_01 | AC | 81 ms
75,136 KB |
testcase_02 | AC | 77 ms
75,264 KB |
testcase_03 | AC | 80 ms
75,520 KB |
testcase_04 | AC | 79 ms
75,520 KB |
testcase_05 | AC | 77 ms
75,008 KB |
testcase_06 | AC | 78 ms
74,880 KB |
testcase_07 | AC | 78 ms
75,392 KB |
testcase_08 | AC | 80 ms
75,136 KB |
testcase_09 | AC | 249 ms
91,264 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
N = input() e = [[] for i in range(N)] S = [N]*N for i in range(N-1): x,y = map(int,raw_input().split()) e[x-1]+=[y-1] e[y-1]+=[x-1] q = [(0,0,0)]+[(0,i,i) for i in range(N) if len(e[i])==1] while q: d,b,h = q.pop(0) if d < S[h]: S[h] = d q+=[(d+1,h,nxt) for nxt in e[h] if nxt != b] for i in range(N): print S[i]