結果

問題 No.277 根掘り葉掘り
ユーザー maine_honzukimaine_honzuki
提出日時 2021-05-11 11:29:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 751 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 207,488 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-09-21 16:48:43
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 205 ms
16,896 KB
testcase_10 AC 182 ms
9,460 KB
testcase_11 AC 198 ms
9,088 KB
testcase_12 AC 209 ms
12,928 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//https://ncode.syosetu.com/n4830bu/277/
#include <bits/stdc++.h>
using namespace std;

int N;
vector<vector<int>> G;
vector<int> book;

int maine(int idx, int par, int depth) {
    int ret = N;
    if (G[idx].size() == 1)
        ret = 0;
    for (auto&& nxt : G[idx]) {
        if (nxt == par)
            continue;
        ret = min(ret, maine(nxt, idx, depth + 1) + 1);
    }
    book[idx] = min(depth, ret);
    return ret;
}

int main() {
    cin >> N;
    G.resize(N);
    for (int i = 0; i < N - 1; i++) {
        int x, y;
        cin >> x >> y;
        x--;
        y--;
        G[x].emplace_back(y);
        G[y].emplace_back(x);
    }
    book.resize(N);
    maine(0, -1, 0);
    for (auto&& a : book) {
        cout << a << endl;
    }
}
0