結果
問題 | No.317 辺の追加 |
ユーザー | paruki |
提出日時 | 2016-06-24 21:26:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,085 bytes |
コンパイル時間 | 1,967 ms |
コンパイル使用メモリ | 179,164 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-11 21:10:44 |
合計ジャッジ時間 | 8,062 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
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 FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; class UnionFind{ public: UnionFind(int _n):n(_n), cnt(_n), par(_n), rank(_n), size(_n, 1){ for(int i=0;i<n;++i) par[i]=i; } int find(int k){ return (k==par[k])?k:(par[k]=find(par[k])); } int operator[](int k){ return find(k); } int getSize(int k){ return size[find(k)]; } void unite(int x, int y){ x = find(x); y = find(y); if(x==y) return; --cnt; if(rank[x] < rank[y]){ par[x] = y; size[y] += size[x]; }else{ par[y] = x; size[x] += size[y]; if(rank[y] == rank[x]) ++rank[y]; } } int count(){ return cnt; } private: int n, cnt; vector<int> par, rank, size; }; const int NAX = 100001, INF = INT_MAX; int N, M, dp[NAX]; int main(){ while(cin >> N >> M){ UnionFind uf(N + 1); rep(i, M){ int u, v; scanf("%d%d", &u, &v); uf.unite(u, v); } vi cc(N + 1), w, cnt; FOR(i, 1, N + 1)cc[uf[i]]++; map<int, int> cnt_; FOR(i, 1, N + 1)if(cc[i])cnt_[cc[i]]++; each(p, cnt_)w.push_back(p.first), cnt.push_back(p.second); rep(j, N + 1)dp[j] = INF; dp[0] = -1; rep(i, sz(w)){ int nw; for(int m = 1; m <= cnt[i]; ++m) for(int j = N; (nw = j - m*w[i]) >= 0 && j >= 0; --j) if(dp[nw] != INF)smin(dp[j], dp[nw] + m); } FOR(i, 1, N + 1)printf("%d\n", dp[i] != INF ? dp[i] : -1); } }