結果

問題 No.807 umg tours
ユーザー yuppe19 😺yuppe19 😺
提出日時 2019-03-23 22:41:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 4,000 ms
コード長 2,015 bytes
コンパイル時間 1,460 ms
コンパイル使用メモリ 97,712 KB
実行使用メモリ 22,960 KB
最終ジャッジ日時 2024-05-02 23:41:52
合計ジャッジ時間 4,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 81 ms
15,292 KB
testcase_12 AC 96 ms
13,372 KB
testcase_13 AC 135 ms
16,596 KB
testcase_14 AC 53 ms
9,348 KB
testcase_15 AC 38 ms
8,120 KB
testcase_16 AC 133 ms
18,032 KB
testcase_17 AC 188 ms
22,224 KB
testcase_18 AC 188 ms
22,012 KB
testcase_19 AC 178 ms
20,100 KB
testcase_20 AC 95 ms
12,544 KB
testcase_21 AC 99 ms
12,876 KB
testcase_22 AC 35 ms
7,620 KB
testcase_23 AC 27 ms
6,680 KB
testcase_24 AC 71 ms
19,840 KB
testcase_25 AC 188 ms
22,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <tuple>
#include <vector>
using namespace std;
using i64 = int64_t;

struct edge { int to; i64 cost; };
constexpr i64 inf = 987'654'321'987'654'321LL;

template <class T>
inline void readint(T *x) {
  *x = 0;
  int c;
  for(;;) {
    c = getchar_unlocked();
    switch(c) case 48: case 49: case 50: case 51: case 52: case 53: case 54: case 55: case 56: case 57: goto num;
  }

num:
  for(;;) {
    switch(c) {
      case 48: case 49: case 50: case 51: case 52: case 53: case 54: case 55: case 56: case 57:
        *x *= 10;
        *x += c - 48;
        break;
      default:
        return;
    }
    c = getchar_unlocked();
  }
}

int main(void) {
  int N, M; readint(&N); readint(&M);
  vector<vector<edge>> G(N, vector<edge>());
  for(int i=0; i<M; ++i) {
    int a, b, c; readint(&a); readint(&b); readint(&c);
    --a, --b;
    G[a].push_back(edge{b, c});
    G[b].push_back(edge{a, c});
  }
  // cost[チケットを使ったか][頂点] := 最小コスト
  vector<vector<i64>> cost(2, vector<i64>(N, inf));
  cost[0][0] = 0;
  cost[1][0] = 0;
  vector<vector<bool>> seen(2, vector<bool>(N, false));
  // コスト、頂点、チケットを使ったか
  priority_queue<tuple<i64, int, bool>, vector<tuple<i64, int, bool>>, greater<tuple<i64, int, bool>>> pq;
  pq.emplace(0, 0, false);
  while(!pq.empty()) {
    i64 _; int v; bool used; tie(_, v, used) = pq.top(); pq.pop();
    if(seen[used][v]) { continue; }
    seen[used][v] = true;
    for(edge &e : G[v]) {
      // チケットを使わない
      if(cost[used][e.to] > cost[used][v] + e.cost) {
        cost[used][e.to] = cost[used][v] + e.cost;
        pq.emplace(cost[used][e.to], e.to, used);
      }
      // チケットを使う
      if(!used && cost[true][e.to] > cost[false][v]) {
        cost[true][e.to] = cost[false][v];
        pq.emplace(cost[true][e.to], e.to, true);
      }
    }
  }
  for(int v=0; v<N; ++v) {
    printf("%ld\n", cost[false][v] + cost[true][v]);
  }
  return 0;
}
0