結果
問題 | No.277 根掘り葉掘り |
ユーザー | Konton7 |
提出日時 | 2020-02-03 01:22:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,721 bytes |
コンパイル時間 | 2,258 ms |
コンパイル使用メモリ | 209,312 KB |
実行使用メモリ | 19,180 KB |
最終ジャッジ日時 | 2024-09-18 21:36:36 |
合計ジャッジ時間 | 7,420 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 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 | 241 ms
16,128 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using PII = std::pair<int, int>; using PLL = std::pair<ll, ll>; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, s, n) for (int i = (s); i < (int)(n); i++) vector<int> depth, height, parent; vector<vector<int>> nodes; void dfs1(int s, int d){ depth[s] = d; for (auto z : nodes[s]) if (z != parent[s]) { parent[z] = s; dfs1(z, d+1); } } void bfs(vector<int> leaf){ int turn = 0; vector<int> search, new_search; search = leaf; while (!search.empty()) { for (auto i : search) { height[i] = min(height[i], turn); for (auto j : nodes[i]) { if (height[j] > turn){ new_search.push_back(j); } } } search.clear(); search = new_search; new_search.clear(); turn++; } } int main() { #ifdef DEBUG cout << "DEBUG MODE" << endl; ifstream in("input.txt"); //for debug cin.rdbuf(in.rdbuf()); //for debug #endif int n, a, b; cin >> n; vector<int> leaf; depth.resize(n), height.resize(n), parent.resize(n), nodes.resize(n); parent[0] = -1; rep(i, n-1) { cin >> a >> b; a--, b--; nodes[a].push_back(b); nodes[b].push_back(a); } dfs1(0, 0); fill(height.begin(), height.end(), n); rep(i, n) if (nodes[i].size() == 1) leaf.push_back(i); bfs(leaf); // rep(i, n) // cout << height[i] << endl; rep(i, n) cout << min(depth[i], height[i]) << endl; return 0; }