結果
問題 | No.1817 Reversed Edges |
ユーザー | bonKotsu |
提出日時 | 2022-07-24 20:45:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 866 bytes |
コンパイル時間 | 4,462 ms |
コンパイル使用メモリ | 262,600 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-07-06 15:55:10 |
合計ジャッジ時間 | 9,018 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,888 KB |
testcase_01 | AC | 3 ms
5,760 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
5,888 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 154 ms
9,460 KB |
testcase_23 | AC | 153 ms
9,552 KB |
testcase_24 | AC | 170 ms
11,904 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; #define ll long long #define rep(i, n) for (int i = 0; i < (n); i++) #define P pair<int, int> #define LP pair<ll, ll> #define fi first #define se second #define pb push_back #define eb emplace_back #define all(s) s.begin(), s.end() #define rall(s) s.rbegin(), s.rend() template<class T> void chmax(T& a, T b) { a = max(a, b); }; template<class T> void chmin(T& a, T b) { a = min(a, b); }; int dist[100005]; vector<int> g[100005]; void dfs(int v, int d, int p = -1) { dist[v] = d; for (auto nv : g[v]) { if (nv == p) continue; dfs(nv, d+1, v); } return; } int main() { int n; cin >> n; rep(i,n-1) { int a, b; cin >> a >> b; a--, b--; g[a].pb(b); g[b].pb(a); } dfs(0, 0); rep(i,n) cout << dist[i] << endl; return 0; }