結果

問題 No.1817 Reversed Edges
ユーザー 259_Momone259_Momone
提出日時 2022-01-21 22:37:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 206,188 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-11-26 01:36:42
合計ジャッジ時間 7,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 196 ms
9,344 KB
testcase_08 AC 92 ms
6,272 KB
testcase_09 AC 183 ms
9,088 KB
testcase_10 AC 104 ms
6,528 KB
testcase_11 AC 137 ms
7,680 KB
testcase_12 AC 229 ms
10,112 KB
testcase_13 AC 225 ms
10,112 KB
testcase_14 AC 220 ms
10,240 KB
testcase_15 AC 218 ms
10,112 KB
testcase_16 AC 218 ms
10,112 KB
testcase_17 AC 223 ms
10,112 KB
testcase_18 AC 221 ms
10,112 KB
testcase_19 AC 218 ms
10,112 KB
testcase_20 AC 222 ms
10,240 KB
testcase_21 AC 218 ms
10,112 KB
testcase_22 AC 181 ms
10,232 KB
testcase_23 AC 184 ms
10,240 KB
testcase_24 AC 204 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main(){
    using namespace std;
    unsigned long N;
    cin >> N;
    vector<vector<unsigned long>> edges(N);
    for(unsigned long i{1}, a, b; i < N; ++i){
        cin >> a >> b;
        edges[--a].emplace_back(--b);
        edges[b].emplace_back(a);
    }
    vector<unsigned long> ans(N);
    unsigned long offset{};
    [dfs_impl{[&edges, &ans, &offset](auto&& f, unsigned long now, unsigned long prev, unsigned long val) -> void {
        ans[now] = val;
        for(const auto& next : edges[now])if(next != prev){
            if(next < now){
                ++offset;
                f(f, next, now, val - 1);
            }else f(f, next, now, val + 1);
        }
    }}]{dfs_impl(dfs_impl, 0, 0, 0);}();
    for(const auto& i : ans)cout << i + offset << endl;
    return 0;
}
0