結果
問題 | No.317 辺の追加 |
ユーザー | tails |
提出日時 | 2015-12-10 13:43:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 1,333 ms |
コンパイル使用メモリ | 162,692 KB |
実行使用メモリ | 18,176 KB |
最終ジャッジ日時 | 2024-09-15 07:28:51 |
合計ジャッジ時間 | 9,683 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
13,884 KB |
testcase_01 | AC | 4 ms
5,760 KB |
testcase_02 | AC | 913 ms
12,800 KB |
testcase_03 | AC | 305 ms
15,616 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 218 ms
16,384 KB |
testcase_06 | AC | 311 ms
18,176 KB |
testcase_07 | AC | 84 ms
9,728 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define Nmax 100010 bool used[Nmax]; list<int> edges[Nmax]; int dp[Nmax]; int countf(int i){ if(used[i]) return 0; used[i]=true; int result = 1; for(auto it=edges[i].begin(); it!=edges[i].end(); ++it){ result += countf(*it); } return result; } int main(){ int N,M; cin>>N>>M; for(int j=0;j<M;++j){ int u,v; cin>>u>>v; edges[u].push_back(v); edges[v].push_back(u); } dp[0]=-1; for(int k=1;k<=N;++k){ dp[k]=N; } int sum=0; for(int i=1;i<=N;++i){ int c = countf(i); if(c>0){ sum+=c; for(int k=sum-c;k>=0;--k){ if(dp[k+c]>1+dp[k]){ dp[k+c]=1+dp[k]; } } } } for(int k=1;k<=N;++k){ cout << (dp[k]<N?dp[k]:-1) << endl; } }