結果
| 問題 | No.317 辺の追加 |
| コンテスト | |
| ユーザー |
koyumeishi
|
| 提出日時 | 2015-12-10 01:39:57 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,031 bytes |
| 記録 | |
| コンパイル時間 | 1,113 ms |
| コンパイル使用メモリ | 93,824 KB |
| 実行使用メモリ | 115,528 KB |
| 最終ジャッジ日時 | 2024-09-15 07:16:21 |
| 合計ジャッジ時間 | 4,885 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | TLE * 1 -- * 37 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:120:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
120 | printf("%d\n", check(ub)?ub:-1);
| ~^ ~~~~~~~~~~~~~~~
| | |
| int long long int
| %lld
main.cpp:68:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
68 | scanf("%d%d", &u, &v);
| ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;
class UnionFindTree{
typedef struct {
int parent;
int rank;
}base_node;
vector<base_node> node;
public:
UnionFindTree(int n){
node.resize(n);
for(int i=0; i<n; i++){
node[i].parent=i;
node[i].rank=0;
}
}
int find(int x){
if(node[x].parent == x) return x;
else{
return node[x].parent = find(node[x].parent);
}
}
bool same(int x, int y){
return find(x) == find(y);
}
void unite(int x, int y){
x = find(node[x].parent);
y = find(node[y].parent);
if(x==y) return;
if(node[x].rank < node[y].rank){
node[x].parent = y;
}else if(node[x].rank > node[y].rank){
node[y].parent = x;
}else{
node[x].rank++;
unite(x,y);
}
}
};
#include <bitset>
typedef bitset<100000> bits;
#include <cassert>
int main(){
int n,m;
cin >> n >> m;
vector<vector<int>> g(n);
UnionFindTree uft(n);
for(int i=0; i<m; i++){
int u,v;
scanf("%d%d", &u, &v);
u--;v--;
g[u].push_back(v);
g[v].push_back(u);
uft.unite(u,v);
}
vector<int> cnt(n, 0);
for(int i=0; i<n; i++){
int r = uft.find(i);
cnt[r]++;
}
//map<int,int> w;
vector<int> unko;
for(int i=0; i<n; i++){
//if(cnt[i]) w[cnt[i]] += 1;
if(cnt[i]) unko.push_back(cnt[i]);
}
sort(unko.begin(), unko.end());
assert(unko.size() <= 20000);
vector<bits> x(unko.size());
for(int i=0; i<unko.size(); i++){
for(int k=i; k>0; k--){
x[k] |= x[k-1]<<unko[i];
}
x[0].set(unko[i]);
}
for(int i=1; i<unko.size(); i++){
x[i] |= x[i-1];
}
vector<int> ans(n+1, -1);
for(int i=1; i<=n; i++){
auto check = [&](int pos){
return x[pos][i];
};
long long lb = -1;
long long ub = unko.size()-1;
while(ub-lb>1){
long long mid = (lb+ub)/2;
bool ok = check(mid);
(ok? ub : lb) = mid;
}
/*
if(check[ub]){
ans[i] = ub;
}
*/
printf("%d\n", check(ub)?ub:-1);
}
return 0;
}
koyumeishi