結果

問題 No.1301 Strange Graph Shortest Path
ユーザー m_tsubasam_tsubasa
提出日時 2020-11-27 22:15:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,361 bytes
コンパイル時間 2,765 ms
コンパイル使用メモリ 219,404 KB
実行使用メモリ 39,116 KB
最終ジャッジ日時 2024-07-26 19:37:22
合計ジャッジ時間 17,540 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 362 ms
28,032 KB
testcase_04 AC 416 ms
38,212 KB
testcase_05 AC 427 ms
29,952 KB
testcase_06 AC 375 ms
34,720 KB
testcase_07 AC 396 ms
32,700 KB
testcase_08 AC 370 ms
28,160 KB
testcase_09 AC 357 ms
33,524 KB
testcase_10 WA -
testcase_11 AC 392 ms
34,980 KB
testcase_12 AC 394 ms
35,724 KB
testcase_13 AC 417 ms
32,384 KB
testcase_14 AC 360 ms
32,548 KB
testcase_15 AC 367 ms
32,060 KB
testcase_16 AC 413 ms
38,500 KB
testcase_17 AC 419 ms
33,792 KB
testcase_18 AC 379 ms
30,976 KB
testcase_19 AC 397 ms
35,376 KB
testcase_20 AC 386 ms
35,708 KB
testcase_21 AC 413 ms
33,460 KB
testcase_22 AC 389 ms
36,852 KB
testcase_23 AC 428 ms
32,896 KB
testcase_24 AC 383 ms
35,796 KB
testcase_25 AC 423 ms
37,224 KB
testcase_26 AC 394 ms
33,408 KB
testcase_27 AC 399 ms
34,564 KB
testcase_28 AC 414 ms
29,696 KB
testcase_29 WA -
testcase_30 AC 421 ms
36,388 KB
testcase_31 AC 419 ms
37,116 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 437 ms
34,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define inf (long long)(1e17)
using namespace std;

using P = pair<long long, long long>;

int n, m;
vector<map<int, long long>> g, g2;
priority_queue<P, vector<P>, greater<P>> pq;

long long solve();

int main() {
  cin >> n >> m;
  g.resize(n);
  g2.resize(n);
  for (int i = 0; i < m; ++i) {
    int x, y, c, d;
    cin >> x >> y >> c >> d;
    --x, --y;
    g[x][y] = g[y][x] = c;
    g2[x][y] = g2[y][x] = d;
  }
  cout << solve() << endl;
  return 0;
}

long long solve() {
  long long res = 0;
  auto dijk = [](vector<map<int, long long>> &g, vector<long long> &dist,
                 vector<long long> &par) {
    dist.assign(n, inf);
    par.assign(n, -1);
    pq.push(P(0, 0));
    dist[0] = 0;
    while (pq.size()) {
      auto [d, now] = pq.top();
      pq.pop();
      if (d != dist[now]) continue;
      for (auto [to, cost] : g[now])
        if (d + cost < dist[to]) {
          dist[to] = d + cost;
          par[to] = now;
          pq.push(P(dist[to], to));
        }
    }
    return dist[n - 1];
  };
  vector<long long> dist, par;
  res += dijk(g, dist, par);
  int now = n - 1;
  while (now != 0) {
    int to = par[now];
    g[to][now] = g[now][to] = -1;
    now = to;
  }
  for (int i = 0; i < n; ++i)
    for (auto [to, cost] : g[i])
      if (cost >= 0) g2[i][to] = cost;
  return res + dijk(g2, dist, par);
}
0