結果
問題 | No.807 umg tours |
ユーザー | bamboo_circle |
提出日時 | 2019-03-23 00:06:41 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,547 bytes |
コンパイル時間 | 2,688 ms |
コンパイル使用メモリ | 167,820 KB |
実行使用メモリ | 42,928 KB |
最終ジャッジ日時 | 2024-11-23 19:14:58 |
合計ジャッジ時間 | 15,343 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
14,884 KB |
testcase_01 | AC | 4 ms
7,808 KB |
testcase_02 | AC | 5 ms
8,064 KB |
testcase_03 | AC | 5 ms
7,928 KB |
testcase_04 | AC | 5 ms
7,856 KB |
testcase_05 | AC | 5 ms
7,808 KB |
testcase_06 | AC | 5 ms
7,936 KB |
testcase_07 | AC | 4 ms
7,936 KB |
testcase_08 | AC | 4 ms
7,808 KB |
testcase_09 | AC | 4 ms
7,872 KB |
testcase_10 | AC | 5 ms
7,808 KB |
testcase_11 | AC | 480 ms
34,596 KB |
testcase_12 | AC | 347 ms
24,104 KB |
testcase_13 | AC | 780 ms
33,472 KB |
testcase_14 | AC | 176 ms
18,288 KB |
testcase_15 | AC | 91 ms
16,172 KB |
testcase_16 | AC | 303 ms
34,536 KB |
testcase_17 | AC | 828 ms
37,196 KB |
testcase_18 | AC | 851 ms
38,100 KB |
testcase_19 | AC | 718 ms
37,504 KB |
testcase_20 | AC | 157 ms
22,336 KB |
testcase_21 | AC | 157 ms
22,784 KB |
testcase_22 | AC | 66 ms
14,336 KB |
testcase_23 | AC | 53 ms
12,964 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 768 ms
42,928 KB |
ソースコード
#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; }