結果
問題 | No.1817 Reversed Edges |
ユーザー | kokatsu |
提出日時 | 2022-01-22 00:17:47 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 139 ms / 2,000 ms |
コード長 | 631 bytes |
コンパイル時間 | 2,525 ms |
コンパイル使用メモリ | 205,672 KB |
実行使用メモリ | 15,488 KB |
最終ジャッジ日時 | 2024-06-22 14:10:51 |
合計ジャッジ時間 | 6,292 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
import std; void main() { int N; readf("%d\n", N); auto list = new int[][](N); foreach (_; 0 .. N-1) { int A, B; readf("%d %d\n", A, B); --A, --B; list[A] ~= B, list[B] ~= A; } auto degs = new int[](N); int f(int now, int pre = -1) { int res; foreach (l; list[now]) { if (l == pre) continue; degs[l] = degs[now]; if (l > now) ++degs[l]; else --degs[l], ++res; res += f(l, now); } return res; } int s = f(0); foreach (d; degs) { writeln(s+d); } }