結果

問題 No.1817 Reversed Edges
ユーザー kokatsukokatsu
提出日時 2022-01-22 00:17:47
言語 D
(dmd 2.106.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 120 ms
8,080 KB
testcase_08 AC 55 ms
6,944 KB
testcase_09 AC 113 ms
6,944 KB
testcase_10 AC 62 ms
6,940 KB
testcase_11 AC 83 ms
6,940 KB
testcase_12 AC 137 ms
6,940 KB
testcase_13 AC 135 ms
7,356 KB
testcase_14 AC 137 ms
8,004 KB
testcase_15 AC 139 ms
7,412 KB
testcase_16 AC 136 ms
8,084 KB
testcase_17 AC 136 ms
7,192 KB
testcase_18 AC 139 ms
7,424 KB
testcase_19 AC 138 ms
7,088 KB
testcase_20 AC 137 ms
7,004 KB
testcase_21 AC 134 ms
7,236 KB
testcase_22 AC 101 ms
7,920 KB
testcase_23 AC 99 ms
7,168 KB
testcase_24 AC 114 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
    }
}
0