結果

問題 No.317 辺の追加
ユーザー FF256grhyFF256grhy
提出日時 2020-04-12 03:18:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 2,935 bytes
コンパイル時間 1,832 ms
コンパイル使用メモリ 180,600 KB
実行使用メモリ 10,832 KB
最終ジャッジ日時 2024-09-21 15:39:52
合計ジャッジ時間 10,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 166 ms
8,912 KB
testcase_03 AC 178 ms
8,020 KB
testcase_04 AC 157 ms
9,556 KB
testcase_05 AC 144 ms
6,488 KB
testcase_06 AC 190 ms
8,916 KB
testcase_07 AC 58 ms
5,376 KB
testcase_08 AC 173 ms
10,068 KB
testcase_09 AC 207 ms
10,712 KB
testcase_10 AC 242 ms
10,708 KB
testcase_11 AC 142 ms
9,428 KB
testcase_12 AC 240 ms
10,704 KB
testcase_13 AC 147 ms
9,552 KB
testcase_14 AC 220 ms
10,708 KB
testcase_15 AC 239 ms
10,712 KB
testcase_16 AC 196 ms
10,324 KB
testcase_17 AC 240 ms
10,584 KB
testcase_18 AC 236 ms
10,704 KB
testcase_19 AC 242 ms
10,832 KB
testcase_20 AC 185 ms
10,320 KB
testcase_21 AC 97 ms
6,868 KB
testcase_22 AC 51 ms
5,376 KB
testcase_23 AC 51 ms
5,376 KB
testcase_24 AC 161 ms
9,424 KB
testcase_25 AC 114 ms
7,636 KB
testcase_26 AC 134 ms
8,916 KB
testcase_27 AC 96 ms
6,872 KB
testcase_28 AC 51 ms
5,376 KB
testcase_29 AC 14 ms
5,376 KB
testcase_30 AC 232 ms
9,940 KB
testcase_31 AC 227 ms
10,072 KB
testcase_32 AC 219 ms
10,064 KB
testcase_33 AC 225 ms
10,196 KB
testcase_34 AC 222 ms
10,092 KB
testcase_35 AC 214 ms
10,072 KB
testcase_36 AC 220 ms
10,068 KB
testcase_37 AC 224 ms
10,072 KB
testcase_38 AC 208 ms
10,072 KB
testcase_39 AC 213 ms
10,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL = long long int;
#define incID(i, l, r) for(int i = (l)    ; i <  (r); ++i)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); --i)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); ++i)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); --i)
#define inc(i, n)  incID(i, 0, n)
#define dec(i, n)  decID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec1(i, n) decII(i, 1, n)
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))
#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define FR front()
#define BA back()
#define ALL(v) v.begin(), v.end()
#define RALL(v) v.rbegin(), v.rend()
auto setmin   = [](auto & a, auto b) { return (b <  a ? a = b, true : false); };
auto setmax   = [](auto & a, auto b) { return (b >  a ? a = b, true : false); };
auto setmineq = [](auto & a, auto b) { return (b <= a ? a = b, true : false); };
auto setmaxeq = [](auto & a, auto b) { return (b >= a ? a = b, true : false); };
#define SI(v) static_cast<int>(v.size())
#define RF(e, v) for(auto & e: v)
#define until(e) while(! (e))
#define if_not(e) if(! (e))
#define ef else if
#define UR assert(false)
#define IN(T, ...) T __VA_ARGS__; IN_(__VA_ARGS__);
void IN_() { };
template<typename T, typename ... U> void IN_(T & a, U & ... b) { cin >> a; IN_(b ...); };
template<typename T> void OUT(T && a) { cout << a << endl; }
template<typename T, typename ... U> void OUT(T && a, U && ... b) { cout << a << " "; OUT(b ...); }

// ---- ----

class UnionFind {
private:
	int n, s;
	vector<int> t;
	vector<vector<int>> v;
public:
	UnionFind(int arg_n = 0) { init(arg_n); }
	void init(int arg_n) {
		n = s = arg_n;
		t.clear();
		v.clear();
		inc(i, n) { t.PB(i); v.EB(1, i); }
	}
	int get_n() { return n; }
	int size() { return s; }
	int id(int x) { return t.at(x); }
	const vector<vector<int>> & get_v() { return v; }
	bool unite(int x, int y) {
		x = id(x);
		y = id(y);
		if(x == y) { return false; }
		if(v[x].size() < v[y].size()) { swap(x, y); }
		for(auto & e: v[y]) { v[x].PB(e); t[e] = x; }
		v[y].clear();
		s--;
		return true;
	}
	bool same(int x, int y) { return (id(x) == id(y)); }
	const vector<int> & operator[](int x) { return v[id(x)]; }
	friend ostream & operator<<(ostream & os, const UnionFind & uf) {
		inc(i, uf.n) { os << i << ": "; for(auto & e: uf.v[i]) { os << e << " "; } os << "\n"; }
		return os;
	}
};

// ---- ----

int main() {
	IN(int, n, m);
	UnionFind uf(n);
	inc(i, m) {
		IN(int, a, b);
		a--; b--;
		uf.unite(a, b);
	}
	map<int, int, greater<int>> mp;
	RF(e, uf.get_v()) { mp[SI(e)]++; }
	
	int INF = n + 1;
	vector<int> dp(n + 1, INF);
	dp[0] = 0;
	RF(e, mp) {
		dec(i, n) {
			if(dp[i] == INF) { continue; }
			inc1(j, e.SE) {
				if_not(setmin(dp[i + e.FI * j], dp[i] + j)) { break; }
			}
		}
	}
	inc1(i, n) { OUT(dp[i] == INF ? -1 : dp[i] - 1); }
}
0