結果
問題 | No.277 根掘り葉掘り |
ユーザー | moti |
提出日時 | 2015-10-22 22:23:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,246 bytes |
コンパイル時間 | 1,053 ms |
コンパイル使用メモリ | 110,628 KB |
実行使用メモリ | 17,824 KB |
最終ジャッジ日時 | 2024-07-22 23:00:06 |
合計ジャッジ時間 | 6,178 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
13,880 KB |
testcase_01 | AC | 4 ms
5,888 KB |
testcase_02 | AC | 4 ms
5,760 KB |
testcase_03 | AC | 3 ms
5,888 KB |
testcase_04 | AC | 3 ms
5,760 KB |
testcase_05 | AC | 4 ms
5,888 KB |
testcase_06 | AC | 4 ms
5,888 KB |
testcase_07 | AC | 4 ms
5,632 KB |
testcase_08 | AC | 4 ms
5,760 KB |
testcase_09 | AC | 222 ms
9,472 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <cmath> #include <vector> #include <complex> #include <queue> #include <deque> #include <set> #include <map> #include <unordered_set> #include <unordered_map> #include <iomanip> #include <assert.h> #include <array> #include <cstdio> #include <cstring> #include <random> #include <functional> using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) typedef long long ll; int N; vector<int> tree[100001]; vector<int> deg; int dist[100001]; void bfs(int s) { queue<pair<int, int>> q; q.emplace(s, 0); vector<bool> vis(N); vis[s] = 1; while(!q.empty()) { auto p = q.front(); q.pop(); dist[p.first] = min(dist[p.first], p.second); rep(i, tree[p.first].size()) { int tar = tree[p.first][i]; if(vis[tar]) { continue; } vis[tar] = 1; q.emplace(tar, p.second+1); } } } int main() { cin >> N; deg.resize(N); rep(i, N-1) { int x, y; cin >> x >> y; x--, y--; deg[x]++, deg[y]++; tree[x].push_back(y); tree[y].push_back(x); } rep(i, N) dist[i] = 1e9; bfs(0); REP(i, 1, N) { if(deg[i] == 1) { bfs(i); } } rep(i, N) cout << dist[i] << endl; return 0; }