結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー | silversmith |
提出日時 | 2019-05-05 15:50:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,145 ms / 2,000 ms |
コード長 | 1,691 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 67,576 KB |
最終ジャッジ日時 | 2024-06-25 02:04:59 |
合計ジャッジ時間 | 22,580 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,101 ms
67,576 KB |
testcase_01 | AC | 700 ms
47,760 KB |
testcase_02 | AC | 1,004 ms
56,848 KB |
testcase_03 | AC | 832 ms
51,336 KB |
testcase_04 | AC | 761 ms
48,400 KB |
testcase_05 | AC | 813 ms
50,320 KB |
testcase_06 | AC | 1,114 ms
60,428 KB |
testcase_07 | AC | 1,087 ms
59,916 KB |
testcase_08 | AC | 850 ms
51,468 KB |
testcase_09 | AC | 732 ms
48,008 KB |
testcase_10 | AC | 589 ms
45,200 KB |
testcase_11 | AC | 1,145 ms
60,552 KB |
testcase_12 | AC | 1,085 ms
58,252 KB |
testcase_13 | AC | 1,064 ms
57,876 KB |
testcase_14 | AC | 989 ms
55,820 KB |
testcase_15 | AC | 828 ms
51,088 KB |
testcase_16 | AC | 555 ms
44,168 KB |
testcase_17 | AC | 834 ms
50,704 KB |
testcase_18 | AC | 1,122 ms
60,044 KB |
testcase_19 | AC | 1,059 ms
58,132 KB |
testcase_20 | AC | 1,067 ms
58,248 KB |
ソースコード
import numpy as np class sol(object): def __init__(self, N, tree): self.N = N self.tree = tree self.dp0 = [0] * N self.dp1 = [0] * N self.visit = [False] * N self.parent = np.array([-1] * N, dtype=int) def dns(self, cur): h = [] h.append(cur) while len(h) > 0: v = h.pop() if len(self.tree[v]) == 1 and self.parent[v] == self.tree[v][0]: self.dp1[v] = 0 self.dp0[v] = 1 self.dp1[self.parent[v]] += 1 self.dp0[self.parent[v]] += 0 elif self.visit[v] == False: h.append(v) for child in self.tree[v]: if child != self.parent[v]: h.append(child) self.parent[child] = v else: self.dp0[v] += 1 if self.parent[v] != -1: self.dp1[self.parent[v]] += max(self.dp0[v], self.dp1[v]) self.dp0[self.parent[v]] += max(self.dp0[v] - 1, self.dp1[v]) self.visit[v] = True return def ans(self): self.dns(0) return max(self.dp0[0],self.dp1[0]) def main(): N=int(input()) tree = [[] for i in range(N)] for _ in range(N -1): e = list(map(int, input().split())) tree[e[0] -1].append(e[1] -1) tree[e[1] -1].append(e[0] -1) print(sol(N, tree).ans()) line_prof = False if line_prof: from line_profiler import LineProfiler profiler = LineProfiler() profiler.add_function(sol.dns) profiler.runcall(main) profiler.print_stats() else: main()