結果
問題 | No.277 根掘り葉掘り |
ユーザー | mayoko_ |
提出日時 | 2015-09-04 22:42:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,219 bytes |
コンパイル時間 | 1,102 ms |
コンパイル使用メモリ | 86,948 KB |
実行使用メモリ | 17,024 KB |
最終ジャッジ日時 | 2024-07-19 01:18:16 |
合計ジャッジ時間 | 3,848 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,760 KB |
testcase_01 | AC | 3 ms
5,760 KB |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
5,760 KB |
testcase_04 | AC | 3 ms
5,888 KB |
testcase_05 | AC | 4 ms
5,632 KB |
testcase_06 | AC | 3 ms
5,760 KB |
testcase_07 | AC | 2 ms
5,760 KB |
testcase_08 | AC | 3 ms
5,632 KB |
testcase_09 | AC | 165 ms
17,024 KB |
testcase_10 | AC | 143 ms
9,368 KB |
testcase_11 | AC | 155 ms
9,216 KB |
testcase_12 | AC | 155 ms
13,056 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> //#include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> //#include<list> #include<queue> #include<deque> #include<algorithm> //#include<numeric> #include<utility> #include<complex> //#include<memory> #include<functional> #include<cassert> #include<set> #include<stack> const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, 1, 0, -1}; using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> pii; const int MAXN = 100010; vector<int> G[MAXN]; int dp[MAXN]; void dfs(int v, int p, int depth) { dp[v] = depth; bool leaf = true; for (int ch : G[v]) { if (ch == p) continue; leaf = false; dfs(ch, v, depth+1); dp[v] = min(dp[v], dp[ch]+1); } if (leaf) dp[v] = 0; } int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; for (int i = 0; i < N-1; i++) { int x, y; cin >> x >> y; G[x].push_back(y); G[y].push_back(x); } dfs(1, 0, 0); for (int i = 1; i <= N; i++) { cout << dp[i] << endl; } return 0; }