結果
問題 | No.277 根掘り葉掘り |
ユーザー | te-sh |
提出日時 | 2017-06-07 18:13:08 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 292 ms / 3,000 ms |
コード長 | 1,082 bytes |
コンパイル時間 | 721 ms |
コンパイル使用メモリ | 108,716 KB |
実行使用メモリ | 24,420 KB |
最終ジャッジ日時 | 2024-06-12 19:46:00 |
合計ジャッジ時間 | 5,423 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 154 ms
13,284 KB |
testcase_10 | AC | 155 ms
16,904 KB |
testcase_11 | AC | 203 ms
12,740 KB |
testcase_12 | AC | 292 ms
12,592 KB |
testcase_13 | AC | 275 ms
23,808 KB |
testcase_14 | AC | 250 ms
24,084 KB |
testcase_15 | AC | 267 ms
23,384 KB |
testcase_16 | AC | 270 ms
24,420 KB |
testcase_17 | AC | 265 ms
23,452 KB |
testcase_18 | AC | 267 ms
23,500 KB |
testcase_19 | AC | 276 ms
23,540 KB |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.container; // SList, DList, BinaryHeap void main() { auto n = readln.chomp.to!size_t; auto ei = new size_t[][](n); foreach (_; 0..n-1) { auto rd = readln.split.to!(size_t[]).map!"a - 1", i = rd[0], j = rd[1]; ei[i] ~= j; ei[j] ~= i; } auto fi = new int[](n); auto gi = new bool[](n); struct E { size_t u, p; int l; } auto si = new SList!E(E(0, n, 0)); while (!si.empty) { auto s = si.front; si.removeFront(); auto leaf = true; foreach (e; ei[s.u]) { if (e == s.p) continue; leaf = false; fi[e] = s.l + 1; si.insertFront(E(e, s.u, s.l + 1)); } gi[s.u] = leaf; } foreach (i; 0..n) { if (!gi[i]) continue; fi[i] = 0; auto ti = new SList!E(E(i, n, 0)); while (!ti.empty) { auto t = ti.front; ti.removeFront(); foreach (e; ei[t.u]) { if (e == t.p || fi[e] <= t.l + 1) continue; fi[e] = t.l + 1; ti.insertFront(E(e, t.u, t.l + 1)); } } } fi.each!writeln; }