結果
問題 | No.277 根掘り葉掘り |
ユーザー | fiord |
提出日時 | 2015-09-07 20:59:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 909 bytes |
コンパイル時間 | 1,444 ms |
コンパイル使用メモリ | 165,600 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-07-19 04:54:52 |
合計ジャッジ時間 | 6,684 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 200 ms
9,344 KB |
testcase_10 | AC | 183 ms
10,868 KB |
testcase_11 | AC | 203 ms
9,856 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<int> ls[n]; int x,y; for(int i=1;i<n;i++){ cin>>x>>y; x--; y--; ls[x].push_back(y); ls[y].push_back(x); } vector<int> r(n),l(n); for(int i=0;i<n;i++) r[i]=l[i]=(1<<30); queue<int> s; s.push(0); vector<int> leaf; r[0]=0; while(!s.empty()){ int now=s.front(); s.pop(); bool lf=true; for(int i=0;i<(int)ls[now].size();i++){ int next=ls[now][i]; if(r[next]>r[now]+1){ lf=false; r[next]=r[now]+1; s.push(next); } } if(lf) leaf.push_back(now); } for(int i=0;i<(int)leaf.size();i++){ s.push(leaf[i]); l[leaf[i]]=0; while(!s.empty()){ int now=s.front(); s.pop(); for(int j=0;j<(int)ls[now].size();j++){ int next=ls[now][j]; if(l[next]>l[now]+1){ l[next]=l[now]+1; s.push(next); } } } } for(int i=0;i<n;i++) cout<<min(l[i],r[i])<<endl; return 0; }