結果

問題 No.1301 Strange Graph Shortest Path
ユーザー hanyuhanyu
提出日時 2020-11-28 00:23:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 282 ms / 3,000 ms
コード長 2,145 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 216,536 KB
実行使用メモリ 42,888 KB
最終ジャッジ日時 2024-07-26 21:22:51
合計ジャッジ時間 11,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 238 ms
41,528 KB
testcase_03 AC 202 ms
37,208 KB
testcase_04 AC 273 ms
38,912 KB
testcase_05 AC 210 ms
41,332 KB
testcase_06 AC 244 ms
36,332 KB
testcase_07 AC 234 ms
38,540 KB
testcase_08 AC 199 ms
37,612 KB
testcase_09 AC 229 ms
34,304 KB
testcase_10 AC 203 ms
37,056 KB
testcase_11 AC 250 ms
37,632 KB
testcase_12 AC 256 ms
37,480 KB
testcase_13 AC 238 ms
41,764 KB
testcase_14 AC 232 ms
34,860 KB
testcase_15 AC 229 ms
36,320 KB
testcase_16 AC 282 ms
38,784 KB
testcase_17 AC 252 ms
41,860 KB
testcase_18 AC 226 ms
38,072 KB
testcase_19 AC 257 ms
36,352 KB
testcase_20 AC 262 ms
35,072 KB
testcase_21 AC 253 ms
39,980 KB
testcase_22 AC 266 ms
35,968 KB
testcase_23 AC 249 ms
41,368 KB
testcase_24 AC 255 ms
35,968 KB
testcase_25 AC 273 ms
38,912 KB
testcase_26 AC 245 ms
37,844 KB
testcase_27 AC 257 ms
37,860 KB
testcase_28 AC 217 ms
41,100 KB
testcase_29 AC 279 ms
38,016 KB
testcase_30 AC 272 ms
39,012 KB
testcase_31 AC 274 ms
38,400 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 156 ms
31,744 KB
testcase_34 AC 261 ms
42,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
static const ll INF = 1e18;

// 最小費用流
struct edge {
  int to;
  ll cap, cost;
  int rev;
};

vector<ll> h, d; // ポテンシャル, 最短距離
vector<int> prevv, preve; // 直前の頂点と辺

void add_edge(vector<vector<edge>> &G, int from, int to, ll cap, ll cost) {
  G[from].emplace_back((edge) {to, cap, cost, (int) G[to].size()});
  G[to].emplace_back((edge) {from, 0, -cost, (int) G[from].size() - 1});
}

// sからtへの流量fの最小費用流(流せない場合は-1)
ll min_cost_flow(vector<vector<edge>> &G, int s, int t, ll f) {
  ll res = 0;
  h.assign(G.size(), 0);
  prevv.assign(G.size(), 0);
  preve.assign(G.size(), 0);
  while (f > 0) {
    priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> pq;
    d.assign(G.size(), INF);
    d[s] = 0;
    pq.push(make_pair(0, s));
    while (!pq.empty()) {
      pair<ll, int> p = pq.top();
      pq.pop();
      int v = p.second;
      if (d[v] < p.first) continue;
      for (int i = 0; i < G[v].size(); i++) {
        edge &e = G[v][i];
        if (e.cap > 0 && d[e.to] > d[v] + e.cost + h[v] - h[e.to]) {
          d[e.to] = d[v] + e.cost + h[v] - h[e.to];
          prevv[e.to] = v;
          preve[e.to] = i;
          pq.push(make_pair(d[e.to], e.to));
        }
      }
    }
    if (d[t] == INF) return -1;
    for (int i = 0; i < G.size(); i++) h[i] += d[i];
    
    // s-t間最短路に流す
    int nowf = f;
    for (int i = t; i != s; i = prevv[i]) {
      nowf = min<ll>(nowf, G[prevv[i]][preve[i]].cap);
    }
    f -= nowf;
    res += nowf * h[t];
    for (int i = t; i != s; i = prevv[i]) {
      edge &e = G[prevv[i]][preve[i]];
      e.cap -= nowf;
      G[i][e.rev].cap += nowf;
    }
  }
  return res;
}

int main() {
  ll n, m;
  cin >> n >> m;
  
  vector<vector<edge>> G(n);
  for (int i = 0; i < m; i++) {
    ll u, v, c, d;
    cin >> u >> v >> c >> d;
    u--;
    v--;
    add_edge(G, u, v, 1, c);
    add_edge(G, u, v, 1, d);
    add_edge(G, v, u, 1, c);
    add_edge(G, v, u, 1, d);
  }
  
  cout << min_cost_flow(G, 0, n - 1, 2) << '\n';
}
0