結果
問題 | No.807 umg tours |
ユーザー | noisy_noimin |
提出日時 | 2019-03-22 21:59:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,408 bytes |
コンパイル時間 | 1,377 ms |
コンパイル使用メモリ | 115,568 KB |
実行使用メモリ | 29,744 KB |
最終ジャッジ日時 | 2024-09-19 05:21:31 |
合計ジャッジ時間 | 11,788 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,400 KB |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
6,528 KB |
testcase_03 | AC | 4 ms
6,400 KB |
testcase_04 | WA | - |
testcase_05 | AC | 3 ms
6,400 KB |
testcase_06 | AC | 4 ms
6,528 KB |
testcase_07 | AC | 5 ms
6,272 KB |
testcase_08 | AC | 3 ms
6,400 KB |
testcase_09 | AC | 5 ms
6,400 KB |
testcase_10 | AC | 4 ms
6,400 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 527 ms
23,040 KB |
testcase_21 | AC | 550 ms
23,680 KB |
testcase_22 | AC | 203 ms
13,824 KB |
testcase_23 | AC | 155 ms
12,160 KB |
testcase_24 | AC | 534 ms
26,660 KB |
testcase_25 | WA | - |
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <cassert> #include <iostream> #include <iomanip> #include <string> #include <stack> #include <queue> #include <vector> #include <map> #include <set> #include <algorithm> #include <numeric> #include <bitset> #define all(c) c.begin(), c.end() #define rall(c) c.rbegin(), c.rend() #define debug(x) cerr << #x << ": " << x << endl using namespace std; typedef long long ll; typedef pair<ll, ll> Pll; typedef pair<int, int> Pii; const ll MOD = 1000000007; const long double EPS = 1e-10; const int MAX_N = 100000; const int dyx[4][2] = { { 0, 1}, {-1, 0}, {0,-1}, {1, 0} }; map<ll, ll> d[2]; priority_queue< Pll, vector<Pll>, greater<Pll> > que; vector< vector<Pll> > edges(MAX_N+1); vector<ll> longest_edge(MAX_N+1, 0); void dijkstra(ll start, int shortcut){ d[shortcut][start] = 0; que.push(Pll(0, start)); while(!que.empty()){ Pll v = que.top(); que.pop(); if(shortcut) { if(d[1].find(v.second) != d[1].end() && d[1][v.second] + longest_edge[v.second] < v.first) continue; } else { if(d[0].find(v.second) != d[0].end() && d[0][v.second] < v.first) continue; } for(Pll e: edges[v.second]){ if(shortcut) { if(d[1].find(e.first) == d[1].end() || d[1][e.first] > d[1][v.second] + longest_edge[v.second] + e.second - max(longest_edge[v.second], e.second)){ d[1][e.first] = d[1][v.second] + longest_edge[v.second] + e.second - max(longest_edge[v.second], e.second); que.push(Pll(d[1][e.first], e.first)); longest_edge[e.first] = max(longest_edge[v.second], e.second); } } else { if(d[0].find(e.first) == d[0].end() || d[0][e.first] > d[0][v.second] + e.second){ d[0][e.first] = d[0][v.second] + e.second; que.push(Pll(d[0][e.first], e.first)); } } } } } int main() { std::ios::sync_with_stdio(0); cin.tie(0); int n,m,a,b; ll c; cin >> n >> m; for(int i=0;i<m;++i) { cin >> a >> b >> c; edges[a].emplace_back(b, c); edges[b].emplace_back(a, c); } dijkstra(1LL, 0); dijkstra(1LL, 1); for(int i=1;i<=n;++i) { cout << d[0][i]+d[1][i] << endl; } }