結果
問題 | No.277 根掘り葉掘り |
ユーザー |
![]() |
提出日時 | 2015-09-04 23:12:22 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,304 bytes |
コンパイル時間 | 621 ms |
コンパイル使用メモリ | 83,188 KB |
実行使用メモリ | 18,208 KB |
最終ジャッジ日時 | 2024-07-19 01:44:33 |
合計ジャッジ時間 | 3,595 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 10 WA * 8 |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <queue> #include <stack> #include <set> #include <map> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <numeric> #include <bitset> #include <complex> #define rep(x, to) for (int x = 0; x < (to); x++) #define REP(x, a, to) for (int x = (a); x < (to); x++) #define foreach(itr, x) for (typeof((x).begin()) itr = (x).begin(); itr != (x).end(); itr++) #define EPS (1e-14) using namespace std; typedef long long ll; typedef pair<int, int> PII; typedef pair<ll, ll> PLL; typedef complex<double> Complex; typedef vector< vector<int> > Mat; const ll INF = (ll)(1e+18); const int MAX_V = 100005; int N; ll L[MAX_V], R[MAX_V]; vector<int> edge[MAX_V]; ll dfs(int u, int prev, ll depth) { R[u] = depth; rep(i, edge[u].size()) { int v = edge[u][i]; if (v == prev) continue; L[u] = min(L[u], 1 + dfs(v, u, depth + 1LL)); } if (INF == L[u]) L[u] = 0; return L[u]; } void solve() { rep(i, MAX_V) L[i] = INF; dfs(1, -1, 0); rep(i, N) { cout << min(R[i + 1], L[i + 1]) << endl; //cout << R[i + 1] << " " << L[i + 1] << endl; } } int main() { cin >> N; rep(i, N - 1) { int x, y; cin>> x >> y; edge[x].push_back(y); edge[y].push_back(x); } solve(); return 0; }