結果

問題 No.317 辺の追加
ユーザー te-shte-sh
提出日時 2017-06-20 17:03:47
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,406 bytes
コンパイル時間 932 ms
コンパイル使用メモリ 114,460 KB
実行使用メモリ 14,248 KB
最終ジャッジ日時 2024-06-12 20:21:14
合計ジャッジ時間 11,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 131 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 52 ms
6,940 KB
testcase_08 WA -
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 WA -
testcase_21 AC 53 ms
6,944 KB
testcase_22 AC 31 ms
6,940 KB
testcase_23 AC 29 ms
6,944 KB
testcase_24 AC 89 ms
6,996 KB
testcase_25 AC 66 ms
6,940 KB
testcase_26 AC 68 ms
6,992 KB
testcase_27 AC 53 ms
7,292 KB
testcase_28 WA -
testcase_29 AC 8 ms
6,944 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 158 ms
14,072 KB
testcase_33 AC 157 ms
14,248 KB
testcase_34 WA -
testcase_35 AC 157 ms
14,176 KB
testcase_36 AC 165 ms
14,184 KB
testcase_37 AC 159 ms
14,228 KB
testcase_38 WA -
testcase_39 AC 152 ms
14,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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.sort().group.array;

  auto dp = new int[](n+1), ma = 0;
  dp[1..$] = inf;

  foreach (t; ti) {
    auto u = t[0], v = t[1];
    auto dp2 = dp.dup;
    foreach (i; 0..ma+1)
      foreach (k; 1..v+1) {
        if (i+u*k > n) break;
        dp2[i+u*k] = min(dp[i+u*k], dp[i] + k);
      }
    dp = dp2;
    ma += u*v;
  }

  foreach (r; dp[1..$]) writeln(r >= inf ? -1 : r-1);
}

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);
  }
}
0