結果
| 問題 | No.317 辺の追加 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-06-20 16:13:59 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,241 bytes |
| 記録 | |
| コンパイル時間 | 777 ms |
| コンパイル使用メモリ | 104,504 KB |
| 実行使用メモリ | 13,888 KB |
| 最終ジャッジ日時 | 2024-06-12 20:20:10 |
| 合計ジャッジ時間 | 7,187 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 2 TLE * 1 -- * 35 |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string;
const inf = 10 ^^ 6;
void main()
{
auto rd1 = readln.split.to!(size_t[]), n = rd1[0], m = rd1[1];
auto uf = UnionFind!size_t(n);
foreach (_; 0..m) {
auto rd2 = readln.split.to!(size_t[]), x = rd2[0]-1, y = rd2[1]-1;
uf.unite(x, y);
}
auto si = new int[](n);
foreach (i; 0..n) ++si[uf.find(i)];
auto ti = si.filter!"a > 0".array;
auto dp = new int[](n+1);
dp[] = inf;
foreach (t; ti) {
foreach_reverse (i; t+1..n+1)
dp[i] = min(dp[i], dp[i-t] + 1);
dp[t] = 0;
}
foreach (r; dp[1..$]) writeln(r >= inf ? -1 : r);
}
struct UnionFind(T)
{
import std.algorithm, std.range;
T[] p; // parent
const T s; // sentinel
const T n;
this(T n)
{
this.n = n;
p = new T[](n);
s = n + 1;
p[] = s;
}
T find(T i)
{
if (p[i] == s) {
return i;
} else {
p[i] = find(p[i]);
return p[i];
}
}
void unite(T i, T j)
{
auto pi = find(i), pj = find(j);
if (pi != pj) p[pj] = pi;
}
bool isSame(T i, T j) { return find(i) == find(j); }
auto groups()
{
auto g = new T[][](n);
foreach (i; 0..n) g[find(i)] ~= i;
return g.filter!(l => !l.empty);
}
}