結果

問題 No.1301 Strange Graph Shortest Path
ユーザー hanyuhanyu
提出日時 2020-11-28 00:23:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 347 ms / 3,000 ms
コード長 2,145 bytes
コンパイル時間 2,447 ms
コンパイル使用メモリ 206,764 KB
最終ジャッジ日時 2025-01-16 08:51:23
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 319 ms
41,412 KB
testcase_03 AC 246 ms
37,088 KB
testcase_04 AC 338 ms
38,784 KB
testcase_05 AC 264 ms
41,208 KB
testcase_06 AC 296 ms
36,228 KB
testcase_07 AC 291 ms
38,540 KB
testcase_08 AC 243 ms
37,488 KB
testcase_09 AC 282 ms
34,176 KB
testcase_10 AC 249 ms
36,932 KB
testcase_11 AC 305 ms
37,496 KB
testcase_12 AC 305 ms
37,348 KB
testcase_13 AC 283 ms
41,632 KB
testcase_14 AC 278 ms
34,736 KB
testcase_15 AC 282 ms
36,328 KB
testcase_16 AC 347 ms
38,656 KB
testcase_17 AC 312 ms
41,988 KB
testcase_18 AC 271 ms
38,076 KB
testcase_19 AC 303 ms
36,352 KB
testcase_20 AC 308 ms
35,072 KB
testcase_21 AC 301 ms
40,108 KB
testcase_22 AC 299 ms
36,096 KB
testcase_23 AC 291 ms
41,368 KB
testcase_24 AC 299 ms
35,712 KB
testcase_25 AC 322 ms
39,040 KB
testcase_26 AC 297 ms
37,736 KB
testcase_27 AC 306 ms
37,732 KB
testcase_28 AC 265 ms
40,976 KB
testcase_29 AC 335 ms
37,760 KB
testcase_30 AC 324 ms
39,008 KB
testcase_31 AC 318 ms
38,272 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 190 ms
31,616 KB
testcase_34 AC 316 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