結果
問題 | No.614 壊れたキャンパス |
ユーザー | ふっぴー |
提出日時 | 2017-12-15 01:20:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,670 bytes |
コンパイル時間 | 2,278 ms |
コンパイル使用メモリ | 194,172 KB |
実行使用メモリ | 183,984 KB |
最終ジャッジ日時 | 2024-12-14 13:54:24 |
合計ジャッジ時間 | 20,444 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
41,392 KB |
testcase_01 | AC | 17 ms
128,340 KB |
testcase_02 | AC | 16 ms
41,380 KB |
testcase_03 | AC | 16 ms
34,464 KB |
testcase_04 | AC | 16 ms
34,452 KB |
testcase_05 | AC | 16 ms
34,480 KB |
testcase_06 | AC | 17 ms
34,540 KB |
testcase_07 | AC | 16 ms
34,512 KB |
testcase_08 | AC | 1,132 ms
109,344 KB |
testcase_09 | AC | 1,540 ms
109,256 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 1,371 ms
110,392 KB |
testcase_12 | AC | 1,447 ms
110,356 KB |
testcase_13 | AC | 1,421 ms
110,788 KB |
testcase_14 | AC | 1,139 ms
110,684 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 957 ms
109,396 KB |
testcase_17 | AC | 411 ms
104,764 KB |
testcase_18 | AC | 629 ms
93,416 KB |
testcase_19 | AC | 650 ms
183,984 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define DEBUG(x) cout<<#x<<": "<<x<<endl; #define DEBUG_VEC(v) cout<<#v<<":";for(int i=0;i<v.size();i++) cout<<" "<<v[i]; cout<<endl typedef long long ll; #define vi vector<int> #define vl vector<ll> #define vii vector< vector<int> > #define vll vector< vector<ll> > #define vs vector<string> #define pii pair<int,int> #define pis pair<int,string> #define psi pair<string,int> #define pll pair<ll,ll> const int inf = 1000000001; const ll INF = 1e18 * 2; #define MOD 1000000007 #define mod 1000000009 #define pi 3.14159265358979323846 #define Sp(p) cout<<setprecision(15)<< fixed<<p<<endl; int dx[4] = { 1,0,-1,0 }, dy[4] = { 0,1,0,-1 }; int dx2[8] = { 1,1,0,-1,-1,-1,0,1 }, dy2[8] = { 0,1,1,1,0,-1,-1,-1 }; static const int WHITE = 0; static const int GRAY = 1; static const int BLACK = 2; static const int N = 400020; vector< vector<pll> > adj(N, vector<pll>()); vl d(N, INF); map<ll, ll> mp[N]; int cnt = 1; void dijkstra() { priority_queue<pll, vector<pll>, greater<pll> > pq; int i; vi color(cnt, WHITE); d[1] = 0; pq.push(make_pair(0, 1)); color[1] = GRAY; while (!pq.empty()) { pll f = pq.top(); pq.pop(); ll u = f.second; color[u] = BLACK; if (d[u]<f.first) { continue; } for (i = 0; i < adj[u].size(); i++) { ll v = adj[u][i].second; if (color[v] == BLACK) { continue; } if (d[v]>d[u] + adj[u][i].first) { d[v] = d[u] + adj[u][i].first; pq.push(make_pair(d[v], v)); color[v] = GRAY; } } } } int main() { int n, m, k, s, t, i; cin >> n >> m >> k >> s >> t; s--; t--; vector<set<ll> > floor(n); floor[0].insert(s); floor[n - 1].insert(t); mp[0][s] = cnt++; mp[n-1][t] = cnt++; for (i = 0; i < m; i++) { ll a, b, c; cin >> a >> b >> c; a--; b--; c--; if (mp[a][b] == 0) { mp[a][b] = cnt++; floor[a].insert(b); } if (mp[a + 1][c] == 0) { mp[a + 1][c] = cnt++; floor[a + 1].insert(c); } adj[mp[a][b]].push_back(pll(0, mp[a + 1][c])); } for (i = 0; i < n; i++) { auto pre = floor[i].begin(); auto itr = floor[i].begin(); itr++; for (; itr != floor[i].end(); itr++, pre++) { ll a = *pre, b = *itr; //cout << i << " " << a << " " << b << endl; ll u = mp[i][a], v = mp[i][b]; //cout << i << " " << u << " " << v << endl; adj[u].push_back(pll(abs(b - a), v)); adj[v].push_back(pll(abs(a - b), u)); } } /* for (i = 0; i < cnt; i++) { for (int j = 0; j < adj[i].size(); j++) { printf("(%d, %d, %d) ", i, adj[i][j].first, adj[i][j].second); } cout << endl; } */ dijkstra(); if (d[mp[n - 1][t]] == INF) { cout << -1 << endl; } else { cout << d[mp[n - 1][t]] << endl; } }