結果

問題 No.317 辺の追加
ユーザー te-shte-sh
提出日時 2017-06-21 11:59:02
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 1,832 bytes
コンパイル時間 1,269 ms
コンパイル使用メモリ 120,892 KB
実行使用メモリ 21,192 KB
最終ジャッジ日時 2024-06-12 20:23:42
合計ジャッジ時間 27,545 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 180 ms
13,904 KB
testcase_03 AC 169 ms
11,780 KB
testcase_04 AC 337 ms
13,868 KB
testcase_05 AC 160 ms
10,364 KB
testcase_06 AC 205 ms
11,132 KB
testcase_07 AC 66 ms
6,944 KB
testcase_08 AC 853 ms
13,916 KB
testcase_09 AC 251 ms
13,880 KB
testcase_10 AC 255 ms
14,460 KB
testcase_11 AC 121 ms
14,104 KB
testcase_12 AC 249 ms
14,032 KB
testcase_13 AC 204 ms
13,944 KB
testcase_14 AC 231 ms
14,488 KB
testcase_15 AC 259 ms
13,752 KB
testcase_16 AC 310 ms
14,272 KB
testcase_17 AC 239 ms
14,108 KB
testcase_18 AC 253 ms
14,480 KB
testcase_19 AC 258 ms
14,112 KB
testcase_20 AC 417 ms
13,940 KB
testcase_21 AC 105 ms
13,148 KB
testcase_22 AC 60 ms
8,476 KB
testcase_23 AC 72 ms
13,144 KB
testcase_24 AC 159 ms
14,112 KB
testcase_25 AC 129 ms
13,120 KB
testcase_26 AC 141 ms
13,500 KB
testcase_27 AC 123 ms
13,988 KB
testcase_28 AC 72 ms
8,764 KB
testcase_29 AC 14 ms
6,944 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.container; // SList, DList, BinaryHeap
import std.typecons;  // Tuple, Nullable, BigFlags

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 = new int[](n+1);
    foreach (k; 0..n+1)
      if (dp[k] < inf)
        dp[k] -= k/u;

    auto deqs = new DList!(size_t)*[](u);
    foreach (i; 0..u) deqs[i] = new DList!size_t();

    foreach (k; 0..n+1) {
      auto deq = deqs[k % u], mi = k >= u*v ? k - u*v : 0;
      while (!deq.empty && deq.front < mi) deq.removeFront();
      while (!deq.empty && dp[deq.back] >= dp[k]) deq.removeBack();
      deq.insertBack(k);
      dp2[k] = dp[deq.front] + (k/u).to!int;
    }
    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