結果
問題 | No.807 umg tours |
ユーザー | bamboo_circle |
提出日時 | 2019-03-23 00:06:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,547 bytes |
コンパイル時間 | 1,631 ms |
コンパイル使用メモリ | 167,916 KB |
実行使用メモリ | 38,100 KB |
最終ジャッジ日時 | 2024-05-02 23:37:09 |
合計ジャッジ時間 | 12,931 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
7,808 KB |
testcase_01 | AC | 4 ms
7,936 KB |
testcase_02 | AC | 4 ms
7,908 KB |
testcase_03 | AC | 3 ms
7,884 KB |
testcase_04 | AC | 4 ms
7,844 KB |
testcase_05 | AC | 4 ms
7,808 KB |
testcase_06 | AC | 4 ms
7,936 KB |
testcase_07 | AC | 4 ms
7,912 KB |
testcase_08 | AC | 4 ms
7,808 KB |
testcase_09 | AC | 3 ms
7,808 KB |
testcase_10 | AC | 3 ms
7,808 KB |
testcase_11 | AC | 459 ms
34,596 KB |
testcase_12 | AC | 319 ms
24,232 KB |
testcase_13 | AC | 764 ms
33,348 KB |
testcase_14 | AC | 145 ms
18,292 KB |
testcase_15 | AC | 81 ms
16,036 KB |
testcase_16 | AC | 291 ms
34,532 KB |
testcase_17 | AC | 793 ms
37,328 KB |
testcase_18 | AC | 822 ms
38,100 KB |
testcase_19 | AC | 702 ms
37,632 KB |
testcase_20 | AC | 151 ms
22,272 KB |
testcase_21 | AC | 176 ms
22,784 KB |
testcase_22 | AC | 64 ms
14,336 KB |
testcase_23 | AC | 54 ms
12,928 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; using ll = long long; using ld = long double; using pii = pair<int, int>; using vi = vector<int>; using vl = vector<ll>; ld EPS = 1e-12; int INF = numeric_limits<int>::max() / 2; int MOD = 1e9 + 7; #define rep(i,n) for(int i = 0; i < n; i++) #define all(obj) (obj).begin(), (obj).end() #define debug(x) cerr << #x << ": " << x << '\n' vector<vector<pair<int, ll> > > edge(200010);//edge[i][j] firstがiからj番目のノード、secondがその重み ll dp[200010]; ll inf = 1e18; void dijkstra(int start){ priority_queue<int> q; q.push(start); while(!q.empty()){ int now = q.top(); q.pop(); for(auto p: edge[now]){ int next = p.first; ll nextd = dp[now] + p.second; if(nextd < dp[next]){ dp[next] = nextd; q.push(next); } } } } int main(){ cin.tie(0); ios::sync_with_stdio(false); int n,m; cin >> n >> m; rep(i,m){ int a,b,c; cin >> a >> b >> c; edge[a].push_back(make_pair(b,c)); edge[a].push_back(make_pair(b+n,0)); edge[b].push_back(make_pair(a,c)); edge[b].push_back(make_pair(a+n,0)); edge[a+n].push_back(make_pair(b+n,c)); edge[b+n].push_back(make_pair(a+n,c)); } for(int i = 1; i <= 2*n; i++){ if(i%n == 1) dp[i] = 0; else dp[i] = inf; } dijkstra(1); rep(i,n){ cout << dp[i+1] + dp[i+n+1] << '\n'; } return 0; }