結果

問題 No.807 umg tours
ユーザー kk
提出日時 2021-02-03 22:48:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 4,000 ms
コード長 1,216 bytes
コンパイル時間 2,423 ms
コンパイル使用メモリ 222,568 KB
実行使用メモリ 21,812 KB
最終ジャッジ日時 2024-06-30 06:02:19
合計ジャッジ時間 7,978 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 133 ms
12,056 KB
testcase_12 AC 187 ms
13,912 KB
testcase_13 AC 225 ms
15,636 KB
testcase_14 AC 100 ms
9,252 KB
testcase_15 AC 79 ms
7,980 KB
testcase_16 AC 226 ms
16,108 KB
testcase_17 AC 294 ms
21,812 KB
testcase_18 AC 299 ms
20,796 KB
testcase_19 AC 294 ms
18,960 KB
testcase_20 AC 224 ms
14,588 KB
testcase_21 AC 216 ms
14,996 KB
testcase_22 AC 91 ms
8,448 KB
testcase_23 AC 66 ms
7,296 KB
testcase_24 AC 191 ms
20,548 KB
testcase_25 AC 301 ms
20,816 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