結果

問題 No.807 umg tours
ユーザー kk
提出日時 2021-02-03 22:48:06
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 324 ms / 4,000 ms
コード長 1,216 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 213,924 KB
最終ジャッジ日時 2025-01-18 11:11:34
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 146 ms
12,188 KB
testcase_12 AC 186 ms
13,800 KB
testcase_13 AC 232 ms
15,624 KB
testcase_14 AC 104 ms
9,248 KB
testcase_15 AC 81 ms
7,972 KB
testcase_16 AC 231 ms
16,036 KB
testcase_17 AC 313 ms
22,456 KB
testcase_18 AC 309 ms
22,212 KB
testcase_19 AC 296 ms
18,828 KB
testcase_20 AC 203 ms
14,636 KB
testcase_21 AC 218 ms
15,104 KB
testcase_22 AC 88 ms
8,448 KB
testcase_23 AC 68 ms
7,296 KB
testcase_24 AC 198 ms
19,776 KB
testcase_25 AC 324 ms
22,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const long long INF = 1LL<<60;

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n, m;
  cin >> n >> m;

  vector<vector<tuple<int, int> > > edges(n);
  for (int i = 0; i < m; i++) {
    int a, b, c;
    cin >> a >> b >> c;
    --a, --b;
    edges[a].emplace_back(b, c);
    edges[b].emplace_back(a, c);
  }

  vector<vector<long long> > dist(n, vector<long long>(2, INF));
  
  priority_queue<tuple<long long, int, int>, vector<tuple<long long , int, int>>, greater<tuple<long long, int, int>> > Q;
  for (int x = 0; x < 2; x++) {
    dist[0][x] = 0;
    Q.emplace(dist[0][x], 0, x);
  }

  while (!Q.empty()) {
    long long cost;
    int v;
    int x;
    tie(cost, v, x) = Q.top();
    
    Q.pop();

    if (dist[v][x] < cost) continue;

    for (auto &[w, weight]: edges[v]) {
      if (dist[v][x] + weight < dist[w][x]) {
        dist[w][x] = dist[v][x] + weight;
        Q.emplace(dist[w][x], w, x);
      }
      if (!x && dist[v][x] < dist[w][x+1]) {
        dist[w][x+1] = dist[v][x];
        Q.emplace(dist[w][x+1], w, x+1);
      }
    }
  }
  
  for (int i = 0; i < n; i++) 
    cout << dist[i][0] + dist[i][1] << endl;
  
  return 0;
}
0