結果
問題 | No.317 辺の追加 |
ユーザー | rickytheta |
提出日時 | 2015-12-10 22:55:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,791 bytes |
コンパイル時間 | 1,568 ms |
コンパイル使用メモリ | 171,384 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 07:44:16 |
合計ジャッジ時間 | 25,595 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | AC | 93 ms
5,376 KB |
testcase_22 | AC | 51 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 163 ms
5,376 KB |
testcase_25 | AC | 116 ms
5,376 KB |
testcase_26 | AC | 121 ms
5,376 KB |
testcase_27 | AC | 98 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 13 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 225 ms
5,376 KB |
testcase_33 | AC | 223 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | AC | 219 ms
5,376 KB |
testcase_36 | AC | 221 ms
5,376 KB |
testcase_37 | AC | 221 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | AC | 221 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef complex<double> P; typedef pair<int,int> pii; #define REP(i,n) for(ll i=0;i<n;++i) #define REPR(i,n) for(ll i=1;i<n;++i) #define FOR(i,a,b) for(ll i=a;i<b;++i) #define DEBUG(x) cout<<#x<<": "<<x<<endl #define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl #define ALL(a) (a).begin(),(a).end() #define MOD (ll)(1e9+7) #define ADD(a,b) a=((a)+(b))%MOD #define FIX(a) ((a)%MOD+MOD)%MOD struct UF{ vi data; UF(int size):data(size,-1){} int root(int a){ return data[a]<0 ? a : data[a]=root(data[a]); } void unite(int a,int b){ a=root(a); b=root(b); if(a!=b){ if(data[b]<data[a])swap(a,b); data[a] += data[b]; data[b] = a; } } bool same(int a,int b){ return root(a) == root(b); } int size(int a){ return -data[root(a)]; } }; int main(){ ll n,m; cin >> n >> m; UF uf(n); REP(i,m){ int u,v; cin>>u>>v; --u;--v; uf.unite(u,v); } map<ll,ll> szs; REP(i,n){ if(uf.root(i)==i) szs[uf.size(i)]+=1; // szs.push_back(uf.size(i)); } // map<ll,ll> dp; // map<ll,ll>::iterator iter; ll left = 1; ll med = (n+1)/2; vl dp(med+1,1e18); dp[0] = -1; vl dp2(med+1,-1e18); dp2[0] = -1; map<ll,ll>::iterator iter2; iter2 = szs.begin(); while(iter2!=szs.end()){ ll num = iter2->first; ll cnt = iter2->second; ++iter2; if(num > med)continue; // iter = dp.end(); // while(iter!=dp.begin()){ REPR(_j,med+1){ ll id = med-_j; if(id+num*cnt<left)break; ll val = dp[id]; ll val2 = dp2[id]; // --iter; // ll id = iter->first; // ll val = iter->second; REP(i,cnt){ id += num; val += 1; val2 += 1; if(id>med)break; // if(dp.count(id)){ dp[id]=min(dp[id],val); dp2[id]=max(dp2[id],val2); // }else{ // dp[id]=val; // } } // if(id+szs[i]<=n){ // if(dp.count(id+szs[i]) == 1) // dp[id+szs[i]] = min(dp[id+szs[i]],val+1); // else // dp[id+szs[i]] = val+1; // } } while(left <= num){ if(dp[left]==1e18) cout << -1 << endl; else cout << dp[left] << endl; ++left; } } while(left <= med){ if(dp[left]==1e18) cout << -1 << endl; else cout << dp[left] << endl; ++left; } FOR(i,med+1,n+1){ if(dp2[n-i]==-1e18) cout << -1 << endl; else cout << szs.size()-dp2[n-i]-2 << endl; } // REPR(i,n+1){ // // if(dp.count(i) == 1){ // if(dp[i]!=1e18){ // cout << dp[i] << endl; // }else{ // cout << -1 << endl; // } // } return 0; }