結果

問題 No.807 umg tours
ユーザー goodbatongoodbaton
提出日時 2019-03-22 23:25:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 425 ms / 4,000 ms
コード長 2,302 bytes
コンパイル時間 1,156 ms
コンパイル使用メモリ 113,248 KB
実行使用メモリ 45,652 KB
最終ジャッジ日時 2024-05-02 23:32:49
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 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 315 ms
38,576 KB
testcase_12 AC 230 ms
26,728 KB
testcase_13 AC 346 ms
39,580 KB
testcase_14 AC 125 ms
19,328 KB
testcase_15 AC 92 ms
15,220 KB
testcase_16 AC 349 ms
37,260 KB
testcase_17 AC 421 ms
45,004 KB
testcase_18 AC 425 ms
45,156 KB
testcase_19 AC 419 ms
45,652 KB
testcase_20 AC 170 ms
23,224 KB
testcase_21 AC 183 ms
24,084 KB
testcase_22 AC 73 ms
12,416 KB
testcase_23 AC 54 ms
10,240 KB
testcase_24 AC 194 ms
35,184 KB
testcase_25 AC 424 ms
44,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>

#include <iostream>
#include <complex>
#include <string>
#include <algorithm>
#include <numeric>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>

#include <functional>
#include <cassert>

typedef long long ll;
using namespace std;

#ifndef LOCAL
#define debug(x) ;
#else
#define debug(x) cerr << __LINE__ << " : " << #x << " = " << (x) << endl;

template <typename T1, typename T2>
ostream &operator<<(ostream &out, const pair<T1, T2> &p) {
  out << "{" << p.first << ", " << p.second << "}";
  return out;
}

template <typename T>
ostream &operator<<(ostream &out, const vector<T> &v) {
  out << '{';
  for (const T &item : v) out << item << ", ";
  out << "\b\b}";
  return out;
}
#endif

#define mod 1000000007 //1e9+7(prime number)
#define INF 1000000000 //1e9
#define LLINF 2000000000000000000LL //2e18
#define SIZE 200010

/* Dijkstra O(NlogM)*/

template <typename Type = int>
struct Dijkstra{
  int V;
  vector<vector<pair<int,Type>>> G;
  vector<Type> cost;

  Dijkstra(int n):
    V(n), G(n, vector<pair<int,Type>>()) {}

  void add_edge(int u, int v, Type c){
    G[u].push_back({v, c});
  }

  Type solve(int s, int g = -1){
    cost.assign(V, -1);
    priority_queue<pair<Type,int>> pq;
    Type max_cost = 0;

    pq.push({0, s});

    while(pq.size()){
      Type now_cost = pq.top().first;
      int now = pq.top().second;
      pq.pop();

      if(cost[now] >= 0) continue;

      cost[now] = -now_cost;
      max_cost = max(max_cost, -now_cost);

      if(now == g) return -now_cost;

      for(int i=0; i<(int)G[now].size(); i++)
        pq.push({now_cost - G[now][i].second, G[now][i].first});
    }

    return max_cost;
  }
};

int main(){
  int n, m;

  scanf("%d%d", &n, &m);

  Dijkstra<ll> dijk(n*2);

  for(int i=0;i<m;i++){
    int a, b, c;
    scanf("%d%d%d", &a, &b, &c);
    a--; b--;

    dijk.add_edge(a, b, c);
    dijk.add_edge(b, a, c);
    dijk.add_edge(a+n, b+n, c);
    dijk.add_edge(b+n, a+n, c);
    dijk.add_edge(a, b+n, 0);
    dijk.add_edge(b, a+n, 0);
  }

  dijk.add_edge(0, n, 0);


  dijk.solve(0);

  for(int i=0;i<n;i++){
    printf("%lld\n", dijk.cost[i] + dijk.cost[i+n]);
  }

  return 0;
}
0