結果
問題 | No.277 根掘り葉掘り |
ユーザー | hirokazu1020 |
提出日時 | 2015-09-04 23:16:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,253 bytes |
コンパイル時間 | 925 ms |
コンパイル使用メモリ | 98,000 KB |
実行使用メモリ | 15,616 KB |
最終ジャッジ日時 | 2024-07-19 01:54:24 |
合計ジャッジ時間 | 4,146 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,632 KB |
testcase_01 | AC | 3 ms
5,760 KB |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
5,632 KB |
testcase_04 | AC | 3 ms
5,760 KB |
testcase_05 | AC | 4 ms
5,760 KB |
testcase_06 | AC | 3 ms
5,632 KB |
testcase_07 | AC | 3 ms
5,632 KB |
testcase_08 | AC | 3 ms
5,632 KB |
testcase_09 | AC | 220 ms
15,616 KB |
testcase_10 | AC | 189 ms
9,336 KB |
testcase_11 | AC | 206 ms
9,088 KB |
testcase_12 | AC | 211 ms
12,416 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include<sstream> #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<string> #include<vector> #include<set> #include<map> #include<queue> #include<numeric> #include<functional> #include<algorithm> #include<bitset> #include<tuple> #include<unordered_set> #include<random> using namespace std; #define INF (1<<29) #define rep(i,n) for(int i=0;i<(int)(n);i++) #define all(v) v.begin(),v.end() #define uniq(v) v.erase(unique(all(v)),v.end()) #define indexOf(v,x) (find(all(v),x)-v.begin()) int ans[100000]; int n; vector<int> edge[100000]; int dfs1(int u,int par,int mind){ if(u!=0 && edge[u].size()==1)return ans[u]=0; rep(i,edge[u].size()){ if(par==edge[u][i])continue; mind=min(mind,dfs1(edge[u][i],u,mind+1)+1); } return ans[u]=min(ans[u],mind); } int dfs2(int u,int par,int mind){ if(u!=0 && edge[u].size()==1)return ans[u]=0; for(int i=edge[u].size()-1;i>=0;i--){ if(par==edge[u][i])continue; mind=min(mind,dfs1(edge[u][i],u,mind+1)+1); } return ans[u]=min(ans[u],mind); } int main() { cin>>n; rep(u,n-1){ int x,y; cin>>x>>y; x--;y--; edge[x].push_back(y); edge[y].push_back(x); } fill_n(ans,n,INF); dfs1(0,-1,0); dfs2(0,-1,0); rep(i,n)cout<<ans[i]<<endl; return 0; }