結果
問題 | No.807 umg tours |
ユーザー | matsukin1111 |
提出日時 | 2019-05-04 12:19:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 499 ms / 4,000 ms |
コード長 | 1,764 bytes |
コンパイル時間 | 1,193 ms |
コンパイル使用メモリ | 111,876 KB |
実行使用メモリ | 24,504 KB |
最終ジャッジ日時 | 2024-11-23 19:29:30 |
合計ジャッジ時間 | 7,725 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,016 KB |
testcase_01 | AC | 3 ms
5,888 KB |
testcase_02 | AC | 4 ms
5,888 KB |
testcase_03 | AC | 4 ms
5,888 KB |
testcase_04 | AC | 3 ms
5,888 KB |
testcase_05 | AC | 4 ms
6,016 KB |
testcase_06 | AC | 4 ms
5,888 KB |
testcase_07 | AC | 4 ms
5,760 KB |
testcase_08 | AC | 4 ms
5,888 KB |
testcase_09 | AC | 3 ms
6,016 KB |
testcase_10 | AC | 3 ms
5,888 KB |
testcase_11 | AC | 269 ms
18,092 KB |
testcase_12 | AC | 275 ms
15,952 KB |
testcase_13 | AC | 361 ms
18,892 KB |
testcase_14 | AC | 160 ms
11,592 KB |
testcase_15 | AC | 126 ms
9,996 KB |
testcase_16 | AC | 377 ms
19,572 KB |
testcase_17 | AC | 478 ms
23,372 KB |
testcase_18 | AC | 482 ms
23,292 KB |
testcase_19 | AC | 464 ms
20,508 KB |
testcase_20 | AC | 282 ms
13,108 KB |
testcase_21 | AC | 292 ms
13,356 KB |
testcase_22 | AC | 123 ms
9,000 KB |
testcase_23 | AC | 99 ms
8,264 KB |
testcase_24 | AC | 318 ms
21,284 KB |
testcase_25 | AC | 499 ms
24,504 KB |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include <cstdlib> #include <math.h> #include <cmath> #include<cctype> #include<string> #include<set> #include<iomanip> #include <map> #include<algorithm> #include <functional> #include<vector> #include<climits> #include<stack> #include<queue> #include <deque> #include <climits> #include <typeinfo> #include <utility> #define all(x) (x).begin(),(x).end() #define rep(i,m,n) for(int i = m;i < n;++i) #define pb push_back #define fore(i,a) for(auto &i:a) #define rrep(i,m,n) for(int i = m;i >= n;--i) #define INF INT_MAX/2 using namespace std; using ll = long long; using R = double; using Data = pair<ll, vector<int>>; const ll MOD = 1e9 + 7; const ll inf = 1LL << 50; struct edge { ll from; ll to; ll cost; }; typedef tuple<ll, ll, ll>T; int n, m; vector<pair<ll, ll>>E[101010]; void dijkstra(int n,int m,vector<vector<ll>> &dp) { dp[0][0] = 0; dp[1][0] = 0; priority_queue<T,vector<T>,greater<T>>Q; Q.push({0,0,0}); Q.push({0,1,0}); while (!Q.empty()) { auto t = Q.top(); Q.pop(); ll cost = get<0>(t); ll state = get<1>(t); ll v = get<2>(t); if (cost > dp[state][v])continue; rep(i, 0, E[v].size()) { auto &e = E[v][i]; if (dp[state][e.first] > cost + e.second) { dp[state][e.first] = cost + e.second; Q.push({dp[state][e.first],state,e.first}); } if (state == 0) { if (dp[1][e.first] > cost) { dp[1][e.first] = cost; Q.push({dp[1][e.first],1,e.first}); } } } } } int main() { cin >> n >> m; rep(i, 0, m) { int a, b, c; cin >> a >> b >> c; a--, b--; E[a].pb({b,c}); E[b].pb({a,c}); } vector<vector<ll>>dp(2,vector<ll>(n,inf)); dijkstra(n, m, dp); rep(i, 0, n) { cout << dp[0][i] + dp[1][i] << endl; } return 0; }