結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー | iicafiaxus |
提出日時 | 2018-12-11 00:40:42 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 212 ms / 2,000 ms |
コード長 | 1,484 bytes |
コンパイル時間 | 1,094 ms |
コンパイル使用メモリ | 130,768 KB |
実行使用メモリ | 35,600 KB |
最終ジャッジ日時 | 2024-06-13 02:11:43 |
合計ジャッジ時間 | 5,599 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 152 ms
35,600 KB |
testcase_01 | AC | 63 ms
10,708 KB |
testcase_02 | AC | 169 ms
21,648 KB |
testcase_03 | AC | 101 ms
17,836 KB |
testcase_04 | AC | 71 ms
11,356 KB |
testcase_05 | AC | 99 ms
20,300 KB |
testcase_06 | AC | 200 ms
27,748 KB |
testcase_07 | AC | 191 ms
25,272 KB |
testcase_08 | AC | 108 ms
19,716 KB |
testcase_09 | AC | 72 ms
10,780 KB |
testcase_10 | AC | 27 ms
9,180 KB |
testcase_11 | AC | 212 ms
28,184 KB |
testcase_12 | AC | 182 ms
22,496 KB |
testcase_13 | AC | 180 ms
21,760 KB |
testcase_14 | AC | 169 ms
21,732 KB |
testcase_15 | AC | 102 ms
19,092 KB |
testcase_16 | AC | 17 ms
6,940 KB |
testcase_17 | AC | 103 ms
18,016 KB |
testcase_18 | AC | 203 ms
27,984 KB |
testcase_19 | AC | 178 ms
22,876 KB |
testcase_20 | AC | 188 ms
26,500 KB |
ソースコード
import std.stdio, std.conv, std.string, std.bigint; import std.math, std.random, std.datetime; import std.array, std.range, std.algorithm, std.container, std.format; string read(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; } class Node{ int id; Node parent; Node[] nodes; Node[] kids; int ans1, ans2; // ans1は自分が除去された時、ans2は自分が除去されない時 this(int id){ this.id = id; } override string toString(){ return "#" ~ this.id.to!string ~ "(" ~ (this.parent? this.parent.id.to!string: "*") ~ ") (" ~ this.kids.map!(x => x.id.to!string).array.join(", ") ~ ") " ~ ans1.to!string ~ " " ~ ans2.to!string; } void setKids(){ foreach(nd; this.nodes){ if(this.parent && this.parent.id == nd.id) continue; if(nd.parent) continue; this.kids ~= nd; nd.parent = this; nd.setKids(); } } void solve(){ this.ans1 = 0, this.ans2 = 1; foreach(kid; this.kids){ kid.solve; this.ans1 += max(kid.ans1, kid.ans2); this.ans2 += max(kid.ans1, kid.ans2 - 1); } } } void main(){ int n = read.to!int; Node[] nodes; foreach(i; 0 .. n) nodes ~= new Node(i); foreach(i; 0 .. n - 1){ int u = read.to!int - 1, v = read.to!int - 1; nodes[u].nodes ~= nodes[v]; nodes[v].nodes ~= nodes[u]; } nodes[0].setKids; debug foreach(nd; nodes) nd.writeln; nodes[0].solve; debug foreach(nd; nodes) nd.writeln; max(nodes[0].ans1, nodes[0].ans2).writeln; }