結果

問題 No.807 umg tours
ユーザー amidtentativeamidtentative
提出日時 2020-02-01 14:28:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 452 ms / 4,000 ms
コード長 2,002 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 104,664 KB
実行使用メモリ 21,468 KB
最終ジャッジ日時 2024-05-03 00:10:00
合計ジャッジ時間 6,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,424 KB
testcase_01 AC 3 ms
7,296 KB
testcase_02 AC 3 ms
7,240 KB
testcase_03 AC 4 ms
7,364 KB
testcase_04 AC 4 ms
7,364 KB
testcase_05 AC 3 ms
7,296 KB
testcase_06 AC 4 ms
7,492 KB
testcase_07 AC 4 ms
7,424 KB
testcase_08 AC 3 ms
7,360 KB
testcase_09 AC 4 ms
7,364 KB
testcase_10 AC 3 ms
7,424 KB
testcase_11 AC 244 ms
18,004 KB
testcase_12 AC 244 ms
14,796 KB
testcase_13 AC 344 ms
17,624 KB
testcase_14 AC 143 ms
11,896 KB
testcase_15 AC 111 ms
10,564 KB
testcase_16 AC 337 ms
18,280 KB
testcase_17 AC 452 ms
21,164 KB
testcase_18 AC 421 ms
21,468 KB
testcase_19 AC 420 ms
19,316 KB
testcase_20 AC 259 ms
12,672 KB
testcase_21 AC 262 ms
12,928 KB
testcase_22 AC 114 ms
9,744 KB
testcase_23 AC 89 ms
9,280 KB
testcase_24 AC 271 ms
17,796 KB
testcase_25 AC 437 ms
21,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <bits/stdc++.h>

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstring>
#include <complex>
#include <stack>
#include <queue>
#include <unordered_map>
#include <map>

#define INF 100000000000
#define rep(i, a) for (int i = 0; i < (a); i++)
using namespace std;
typedef pair<int, int> P;

typedef struct edge{
  int to;
  long long int cost;
} edge;

vector<edge> graph[100010];
long long int d[2][100010];

void dijkstra(int s){
   typedef pair<long long int, P> T; //pair<頂点までの距離, チケット残り, 頂点>
   priority_queue<T, vector<T>, greater<T> > que;
   for(int i = 0; i < 100010; i++){
       d[0][i] = INF;
       d[1][i] = INF;
   }

   //スタート地点への距離は0
   d[1][s] = 0;
   d[0][s] = 0;
   que.push(T(0, P(1, s)));


   //ダイクストラ法
   while(!que.empty()){
       T t = que.top();
       que.pop();
       long long int dist = t.first;
       int state = t.second.first;
       int v = t.second.second;

       if(dist > d[state][v]) continue;

       for(int i = 0; i < graph[v].size(); i++){
           edge e = graph[v][i];
           if(d[state][e.to] > dist + e.cost){
               d[state][e.to] = dist + e.cost;
               que.push(T(d[state][e.to], P(state, e.to)));
           }
       }

       if(state == 1){
           for(int i = 0; i < graph[v].size(); i++){
               edge e = graph[v][i];
               if(d[0][e.to] > dist + 0){
                   d[0][e.to] = dist + 0;
                   que.push(T(d[0][e.to], P(0, e.to)));
               }
           }
       }
   }
}


int main() {
  int n, m;
  cin >> n >> m;

   for(int i = 0; i < m; i++){
       int s, t;
       long long int c;
       cin >> s >> t >> c;
       s--;
       t--;

       edge e;
       e.to = t; e.cost = c; graph[s].push_back(e);
       e.to = s; e.cost = c; graph[t].push_back(e);
   }

   dijkstra(0);

   for(int i = 0; i < n; i++){
       cout << d[0][i] + d[1][i] << endl;
   }
}

0