結果
問題 | No.1301 Strange Graph Shortest Path |
ユーザー | snow39 |
提出日時 | 2020-11-27 22:23:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,127 bytes |
コンパイル時間 | 1,731 ms |
コンパイル使用メモリ | 116,868 KB |
実行使用メモリ | 21,224 KB |
最終ジャッジ日時 | 2024-07-26 19:45:03 |
合計ジャッジ時間 | 8,875 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 111 ms
14,180 KB |
testcase_04 | AC | 213 ms
19,360 KB |
testcase_05 | AC | 114 ms
14,572 KB |
testcase_06 | AC | 177 ms
17,636 KB |
testcase_07 | AC | 161 ms
16,544 KB |
testcase_08 | AC | 116 ms
14,364 KB |
testcase_09 | AC | 173 ms
17,120 KB |
testcase_10 | WA | - |
testcase_11 | AC | 178 ms
17,608 KB |
testcase_12 | AC | 189 ms
18,024 KB |
testcase_13 | AC | 148 ms
16,112 KB |
testcase_14 | AC | 161 ms
16,476 KB |
testcase_15 | AC | 153 ms
16,240 KB |
testcase_16 | AC | 212 ms
19,488 KB |
testcase_17 | AC | 166 ms
17,056 KB |
testcase_18 | AC | 144 ms
15,756 KB |
testcase_19 | AC | 185 ms
17,840 KB |
testcase_20 | AC | 196 ms
17,984 KB |
testcase_21 | AC | 168 ms
16,868 KB |
testcase_22 | AC | 207 ms
18,536 KB |
testcase_23 | AC | 162 ms
16,676 KB |
testcase_24 | AC | 198 ms
18,076 KB |
testcase_25 | AC | 208 ms
18,824 KB |
testcase_26 | AC | 182 ms
16,980 KB |
testcase_27 | AC | 190 ms
17,460 KB |
testcase_28 | AC | 136 ms
14,868 KB |
testcase_29 | WA | - |
testcase_30 | AC | 203 ms
18,176 KB |
testcase_31 | AC | 209 ms
18,616 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 224 ms
21,224 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #include <tuple> #define mkp make_pair #define mkt make_tuple #define rep(i,n) for(int i = 0; i < (n); ++i) #define all(v) v.begin(),v.end() using namespace std; typedef long long ll; const ll MOD=1e9+7; template<class T> void chmin(T &a,const T &b){if(a>b) a=b;} template<class T> void chmax(T &a,const T &b){if(a<b) a=b;} int N,M; vector<vector<pair<int,ll>>> cg; vector<vector<pair<int,ll>>> dg; const ll INF=1e18; map<pair<int,int>,int> mp; ll dijkstra(vector<int> &path){ priority_queue<pair<ll,int>,vector<pair<ll,int>>,greater<pair<ll,int>>> PQ; PQ.push(mkp(0,0)); vector<ll> dist(N,INF); vector<int> prev(N,-1); dist[0]=0; while(!PQ.empty()){ auto f=PQ.top(); PQ.pop(); int now=f.second; ll d=f.first; if(dist[now]<d) continue; for(auto e:cg[now]){ int to=e.first; ll cost=e.second; if(mp.count(minmax(now,to))) continue; if(dist[to]>dist[now]+cost){ prev[to]=now; dist[to]=dist[now]+cost; PQ.push(mkp(dist[to],to)); } } for(auto e:dg[now]){ int to=e.first; ll cost=e.second; if(mp.count(minmax(now,to))==false) continue; if(dist[to]>dist[now]+cost){ prev[to]=now; dist[to]=dist[now]+cost; PQ.push(mkp(dist[to],to)); } } } int now=N-1; while(prev[now]!=-1){ path.push_back(now); now=prev[now]; } path.push_back(now); reverse(all(path)); return dist[N-1]; } int main(){ cin.tie(0); ios::sync_with_stdio(false); cin>>N>>M; cg.resize(N); dg.resize(N); rep(i,M){ int a,b,c,d; cin>>a>>b>>c>>d; a--;b--; cg[a].push_back(mkp(b,c)); cg[b].push_back(mkp(a,c)); dg[a].push_back(mkp(b,d)); dg[b].push_back(mkp(a,d)); } vector<int> onepath; ll ares=dijkstra(onepath); for(int i=0;i+1<onepath.size();i++) mp[minmax(onepath[i],onepath[i+1])]=1; vector<int> twopath; ll bres=dijkstra(twopath); cout<<ares+bres<<endl; return 0; }