結果

問題 No.1316 Maximum Minimum Spanning Tree
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-12-25 05:16:34
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 4,980 bytes
コンパイル時間 1,117 ms
コンパイル使用メモリ 118,720 KB
実行使用メモリ 6,800 KB
最終ジャッジ日時 2023-09-04 11:46:35
合計ジャッジ時間 7,936 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 3 ms
4,380 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 88 ms
6,228 KB
testcase_08 AC 91 ms
4,952 KB
testcase_09 AC 94 ms
4,996 KB
testcase_10 AC 94 ms
5,012 KB
testcase_11 AC 18 ms
4,432 KB
testcase_12 AC 19 ms
4,484 KB
testcase_13 AC 19 ms
4,396 KB
testcase_14 AC 18 ms
4,404 KB
testcase_15 AC 95 ms
6,800 KB
testcase_16 AC 98 ms
6,152 KB
testcase_17 AC 93 ms
4,976 KB
testcase_18 AC 97 ms
4,972 KB
testcase_19 AC 9 ms
4,388 KB
testcase_20 AC 9 ms
4,380 KB
testcase_21 AC 9 ms
4,380 KB
testcase_22 AC 9 ms
4,384 KB
testcase_23 AC 11 ms
4,380 KB
testcase_24 AC 11 ms
4,384 KB
testcase_25 AC 11 ms
4,380 KB
testcase_26 AC 10 ms
4,380 KB
testcase_27 AC 9 ms
4,380 KB
testcase_28 AC 9 ms
4,380 KB
testcase_29 AC 9 ms
4,384 KB
testcase_30 AC 9 ms
4,384 KB
testcase_31 AC 11 ms
4,380 KB
testcase_32 AC 10 ms
4,380 KB
testcase_33 AC 11 ms
4,384 KB
testcase_34 AC 11 ms
4,380 KB
testcase_35 AC 9 ms
4,384 KB
testcase_36 AC 9 ms
4,380 KB
testcase_37 AC 9 ms
4,380 KB
testcase_38 AC 9 ms
4,380 KB
testcase_39 AC 11 ms
4,384 KB
testcase_40 AC 10 ms
4,384 KB
testcase_41 AC 11 ms
4,380 KB
testcase_42 AC 10 ms
4,380 KB
testcase_43 AC 76 ms
5,024 KB
testcase_44 AC 77 ms
5,008 KB
testcase_45 AC 83 ms
6,216 KB
testcase_46 AC 82 ms
6,724 KB
testcase_47 AC 83 ms
4,976 KB
testcase_48 AC 82 ms
4,896 KB
testcase_49 AC 82 ms
6,008 KB
testcase_50 AC 81 ms
4,984 KB
testcase_51 AC 81 ms
5,704 KB
testcase_52 AC 80 ms
4,928 KB
testcase_53 AC 86 ms
4,944 KB
testcase_54 AC 88 ms
5,004 KB
testcase_55 AC 93 ms
6,220 KB
testcase_56 AC 93 ms
6,284 KB
testcase_57 AC 93 ms
6,736 KB
testcase_58 AC 93 ms
4,980 KB
testcase_59 AC 93 ms
4,924 KB
testcase_60 AC 90 ms
4,956 KB
testcase_61 AC 93 ms
4,932 KB
testcase_62 AC 97 ms
6,540 KB
testcase_63 AC 93 ms
4,972 KB
testcase_64 AC 92 ms
6,212 KB
testcase_65 AC 96 ms
5,748 KB
testcase_66 AC 98 ms
4,916 KB
testcase_67 AC 99 ms
6,200 KB
testcase_68 AC 92 ms
5,984 KB
testcase_69 AC 96 ms
6,452 KB
testcase_70 AC 95 ms
4,980 KB
testcase_71 AC 96 ms
4,976 KB
testcase_72 AC 98 ms
5,020 KB
testcase_73 AC 97 ms
6,208 KB
testcase_74 AC 98 ms
4,924 KB
testcase_75 AC 11 ms
4,380 KB
testcase_76 AC 11 ms
4,384 KB
testcase_77 AC 11 ms
4,384 KB
testcase_78 AC 96 ms
4,992 KB
testcase_79 AC 95 ms
4,960 KB
testcase_80 AC 96 ms
6,536 KB
testcase_81 AC 88 ms
4,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


class MaxFlow(Capa, Capa wEPS = 0, Capa wINF = 10^^9) {
  int n, m;
  int[][] g;
  int[] zu;
  Capa[] capa;
  Capa tof;
  int[] lev, see, que;
  this(int n) {
    this.n = n; m = 0; g = new int[][n]; zu = []; capa = [];
    lev = new int[n]; see = new int[n]; que = new int[n];
  }
  void addEdge(int u, int v, Capa w0, Capa w1 = 0) {
    g[u] ~= m; zu ~= v; capa ~= w0; ++m;
    g[v] ~= m; zu ~= u; capa ~= w1; ++m;
  }
  Capa augment(int src, int ink, Capa flo) {
    if (src == ink) return flo;
    foreach (i; g[src][see[src] .. $]) {
      if (capa[i] > wEPS && lev[src] < lev[zu[i]]) {
        Capa f = augment(zu[i], ink, min(flo, capa[i]));
        if (f > wEPS) { capa[i] -= f; capa[i ^ 1] += f; return f; }
      }
      ++see[src];
    }
    return 0;
  }
  bool dinic(int src, int ink, Capa flo = wINF) {
    for (tof = 0; tof + wEPS < flo; ) {
      int qb, qe;
      lev[] = -1;
     dinicBFS:
      for (lev[src] = 0, que[qe++] = src; qb != qe; ) {
        const u = que[qb++];
        foreach (i; g[u]) {
          const v = zu[i];
          if (capa[i] > wEPS && lev[v] == -1) {
            lev[v] = lev[u] + 1; que[qe++] = v;
            if (v == ink) break dinicBFS;
          }
        }
      }
      if (lev[ink] == -1) return false;
      see[] = 0;
      for (; ; ) {
        Capa f = augment(src, ink, flo - tof);
        if (f <= wEPS) break;
        tof += f;
      }
    }
    return true;
  }
}


/*
  http://www.columbia.edu/~cs2035/courses/ieor6614.S16/mst-lp.pdf
  max_x { K min_y { \sum_i (c_i + x_i) y_i | MST-LP } - \sum_i d_i x_i | x_i >= 0 }
  
  https://www.jstage.jst.go.jp/article/kodaimath1978/11/1/11_1_5/_pdf
  min_y { max_x { \sum_i K (c_i + x_i) y_i - \sum_i d_i x_i | x_i >= 0 } | MST-LP }
  = min_y { max_x { \sum_i (K c_i y_i + (K y_i - d_i) x_i) | x_i >= 0 } | MST-LP }
  = min_y { \sum_i K c_i y_i + \sum_i INF [K y_i - d_i > 0] | MST-LP }
  = min_y { \sum_i K c_i y_i | MST-LP, K y_i <= d_i }
  
  MST-LP
    y_i >= 0
    \sum_i y_i = N - 1
    \sum_{i=uv, u,v\in S} y_i <= |S| - 1
  
  ("cut >= 1" instead: not nec integer!)
  
  min_S { |S| - \sum_{i=uv, u,v\in S} y_i } >= 1
  take i ==> take u and take v
  take i: cost -y_i
  take u: cost 1
  need to take some u
*/

enum INF = 10L^^18;

void main() {
  try {
    for (; ; ) {
      const N = readInt();
      const M = readInt();
      const K = readLong();
      auto A = new int[M];
      auto B = new int[M];
      auto C = new long[M];
      auto D = new long[M];
      foreach (i; 0 .. M) {
        A[i] = readInt() - 1;
        B[i] = readInt() - 1;
        C[i] = readLong();
        D[i] = readLong();
      }
      
      alias Edge = Tuple!(long, "c", int, "i");
      auto edges = new Edge[M];
      foreach (i; 0 .. M) {
        edges[i] = Edge(C[i], i);
      }
      edges.sort;
      
      auto ys = new long[M];
      // take i0
      long check(int i0) {
        auto mf = new MaxFlow!(long, 0, INF)(2 + M + N);
        long cost;
        foreach (i; 0 .. M) {
          cost -= ys[i];
          mf.addEdge(0, 2 + i, ys[i]);
          mf.addEdge(2 + i, 2 + M + A[i], INF);
          mf.addEdge(2 + i, 2 + M + B[i], INF);
        }
        foreach (u; 0 .. N) {
          mf.addEdge(2 + M + u, 1, K);
        }
        mf.addEdge(0, 2 + i0, INF);
        mf.dinic(0, 1);
        return cost + mf.tof;
      }
      
      foreach (ref edge; edges) {
        const i = edge.i;
        ys[i] = 0;
        const res = check(i);
        assert(res >= K);
        ys[i] = min(res - K, D[i]);
      }
      debug {
        writeln("ys = ", ys);
      }
      
      if (ys.sum < K * (N - 1)) {
        writeln(-1);
      } else {
        long ans;
        foreach (i; 0 .. M) {
          ans += C[i] * ys[i];
        }
        writeln(ans);
      }
    }
  } catch (EOFException e) {
  }
}
0