結果

問題 No.1817 Reversed Edges
ユーザー 259_Momone259_Momone
提出日時 2022-01-21 22:37:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 1,864 ms
コンパイル使用メモリ 206,448 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-05-04 13:48:51
合計ジャッジ時間 6,649 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 165 ms
9,344 KB
testcase_08 AC 90 ms
6,940 KB
testcase_09 AC 167 ms
9,088 KB
testcase_10 AC 89 ms
6,944 KB
testcase_11 AC 116 ms
7,552 KB
testcase_12 AC 187 ms
10,240 KB
testcase_13 AC 189 ms
10,240 KB
testcase_14 AC 199 ms
10,112 KB
testcase_15 AC 214 ms
10,112 KB
testcase_16 AC 218 ms
10,240 KB
testcase_17 AC 215 ms
10,112 KB
testcase_18 AC 187 ms
10,144 KB
testcase_19 AC 209 ms
10,240 KB
testcase_20 AC 206 ms
10,112 KB
testcase_21 AC 230 ms
10,112 KB
testcase_22 AC 178 ms
10,236 KB
testcase_23 AC 167 ms
10,236 KB
testcase_24 AC 182 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