結果

問題 No.1301 Strange Graph Shortest Path
ユーザー auauaauaua
提出日時 2020-11-28 16:35:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,254 bytes
コンパイル時間 1,999 ms
コンパイル使用メモリ 183,768 KB
実行使用メモリ 21,588 KB
最終ジャッジ日時 2024-09-12 23:13:02
合計ジャッジ時間 10,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 162 ms
12,264 KB
testcase_04 AC 244 ms
15,768 KB
testcase_05 AC 169 ms
12,592 KB
testcase_06 AC 216 ms
14,452 KB
testcase_07 AC 200 ms
13,828 KB
testcase_08 AC 166 ms
12,364 KB
testcase_09 AC 204 ms
14,076 KB
testcase_10 WA -
testcase_11 AC 228 ms
14,552 KB
testcase_12 AC 225 ms
14,884 KB
testcase_13 AC 204 ms
13,712 KB
testcase_14 AC 204 ms
13,728 KB
testcase_15 AC 192 ms
13,592 KB
testcase_16 AC 243 ms
15,792 KB
testcase_17 AC 209 ms
14,312 KB
testcase_18 AC 186 ms
13,288 KB
testcase_19 AC 218 ms
14,696 KB
testcase_20 AC 228 ms
14,596 KB
testcase_21 AC 209 ms
14,240 KB
testcase_22 AC 244 ms
14,860 KB
testcase_23 AC 208 ms
13,936 KB
testcase_24 AC 226 ms
14,812 KB
testcase_25 AC 237 ms
15,408 KB
testcase_26 AC 214 ms
14,128 KB
testcase_27 AC 219 ms
14,508 KB
testcase_28 AC 173 ms
12,984 KB
testcase_29 WA -
testcase_30 AC 240 ms
15,152 KB
testcase_31 AC 246 ms
15,324 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 292 ms
21,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
//#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
#define vec vector<ll>
#define mat vector<vector<ll> >
#define fi first
#define se second
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
typedef long double ld;
typedef complex<double> comp;
const ll INF=1e9+7;
const ll inf=INF*INF;
const ll MOD=998244353;
const ll mod=MOD;
const ll MAX=200010;
const double PI=acos(-1.0);

//dijkstra(O(ElogV))
//0-indexed
void dijkstra(ll n,ll s,vector<vector<pll> >&G,vector<ll> &d,vector<ll>&prev){
    priority_queue<pll,vector<pll>,greater<pll> >pq;
    rep(i,n){
        d[i]=inf;
    }
    d[s]=0;
    pq.push(mp(0,s));
    while(!pq.empty()){
        pll k=pq.top();pq.pop();
        ll v=k.second;
        if(d[v]<k.first)continue;
        for(auto e:G[v]){
            if(d[e.first]>d[v]+e.second){
                d[e.first]=d[v]+e.second;
                prev[e.fi]=v;
                pq.push(mp(d[e.first],e.first));
            }
        }
    }
}
signed main(){
    ll n,m;cin>>n>>m;
    vector<ll>u(m),v(m),c(m),d(m);
    rep(i,m){
        cin>>u[i]>>v[i]>>c[i]>>d[i];
        u[i]--;v[i]--;
    }
    
    ll len1,len2;
    vector<ll>prev(n);
    set<pll>st;
    {
        vector<vector<pll> >G(n);
        vector<ll>dist(n);
        rep(i,m){
            G[u[i]].pb(mp(v[i],c[i]));
            G[v[i]].pb(mp(u[i],c[i]));
        }
        dijkstra(n,0,G,dist,prev);
        len1=dist[n-1];
        ll now=n-1;
        while(now!=0){
            st.insert(mp(prev[now],now));
            st.insert(mp(now,prev[now]));
            now=prev[now];
        }
    }
    {
        vector<vector<pll> >G(n);
        vector<ll>dist(n);
        rep(i,m){
            if(!st.count(mp(u[i],v[i]))){
                G[u[i]].pb(mp(v[i],c[i]));
                G[v[i]].pb(mp(u[i],c[i]));
            }else{
                G[u[i]].pb(mp(v[i],d[i]));
                G[v[i]].pb(mp(u[i],d[i]));
            }
        }
        dijkstra(n,0,G,dist,prev);
        len2=dist[n-1];
    }
    cout<<len2+len1<<endl;
}
0