結果

問題 No.317 辺の追加
ユーザー chocoruskchocorusk
提出日時 2018-11-14 16:24:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 1,256 bytes
コンパイル時間 898 ms
コンパイル使用メモリ 104,880 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-06-06 19:59:31
合計ジャッジ時間 11,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,016 KB
testcase_01 AC 4 ms
6,272 KB
testcase_02 AC 161 ms
9,344 KB
testcase_03 AC 176 ms
10,112 KB
testcase_04 AC 174 ms
8,448 KB
testcase_05 AC 155 ms
9,984 KB
testcase_06 AC 204 ms
11,008 KB
testcase_07 AC 66 ms
7,680 KB
testcase_08 AC 200 ms
8,320 KB
testcase_09 AC 219 ms
10,112 KB
testcase_10 AC 257 ms
11,904 KB
testcase_11 AC 144 ms
6,656 KB
testcase_12 AC 273 ms
12,032 KB
testcase_13 AC 160 ms
7,424 KB
testcase_14 AC 226 ms
11,008 KB
testcase_15 AC 249 ms
11,776 KB
testcase_16 AC 187 ms
9,088 KB
testcase_17 AC 228 ms
11,136 KB
testcase_18 AC 258 ms
11,904 KB
testcase_19 AC 268 ms
11,904 KB
testcase_20 AC 203 ms
8,832 KB
testcase_21 AC 91 ms
8,448 KB
testcase_22 AC 52 ms
7,296 KB
testcase_23 AC 51 ms
7,168 KB
testcase_24 AC 158 ms
10,112 KB
testcase_25 AC 126 ms
9,856 KB
testcase_26 AC 123 ms
9,472 KB
testcase_27 AC 100 ms
9,088 KB
testcase_28 AC 53 ms
7,296 KB
testcase_29 AC 15 ms
6,400 KB
testcase_30 AC 217 ms
9,472 KB
testcase_31 AC 219 ms
9,344 KB
testcase_32 AC 219 ms
9,472 KB
testcase_33 AC 216 ms
9,472 KB
testcase_34 AC 212 ms
9,472 KB
testcase_35 AC 216 ms
9,344 KB
testcase_36 AC 214 ms
9,344 KB
testcase_37 AC 211 ms
9,216 KB
testcase_38 AC 215 ms
9,472 KB
testcase_39 AC 212 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const int INF=1e8;
vector<int> g[100000];
bool used[100000];
int ct;
void dfs(int x){
    used[x]=1;
    ct++;
    for(auto y:g[x]){
        if(!used[y]){
            dfs(y);
        }
    }
}
int main()
{
    int n, m;
    cin>>n>>m;
	for(int i=0; i<m; i++){
	    int a, b;
	    cin>>a>>b;
	    a--; b--;
	    g[a].push_back(b);
	    g[b].push_back(a);
	}
	unordered_map<int, int> mp;
	for(int i=0; i<n; i++){
	    if(!used[i]){
	        ct=0;
	        dfs(i);
	        mp[ct]++;
	    }
	}
	int dp[100001];
	fill(dp, dp+n+1, INF);
	dp[0]=0;
	for(auto p:mp){
	    int x=p.first, c=p.second;
	    for(int k=0; c>0; k++){
	        int key=min(c, 1<<k);
	        c-=key;
	        for(int i=n; i>=key*x; i--){
	            dp[i]=min(dp[i], dp[i-key*x]+key);
	        }
	    }
	}
	for(int i=1; i<=n; i++){
	    if(dp[i]==INF) cout<<-1<<endl;
	    else cout<<dp[i]-1<<endl;
	}
	return 0;
}
0