結果

問題 No.1301 Strange Graph Shortest Path
ユーザー monnumonnu
提出日時 2021-04-19 22:42:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,880 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 184,912 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-04 05:09:58
合計ジャッジ時間 9,693 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 151 ms
9,216 KB
testcase_04 AC 215 ms
12,288 KB
testcase_05 AC 155 ms
9,344 KB
testcase_06 AC 183 ms
11,264 KB
testcase_07 AC 172 ms
10,496 KB
testcase_08 AC 148 ms
9,344 KB
testcase_09 AC 168 ms
11,136 KB
testcase_10 WA -
testcase_11 AC 192 ms
11,264 KB
testcase_12 AC 185 ms
11,520 KB
testcase_13 AC 177 ms
10,240 KB
testcase_14 AC 173 ms
10,624 KB
testcase_15 AC 164 ms
10,496 KB
testcase_16 AC 204 ms
12,416 KB
testcase_17 AC 180 ms
10,880 KB
testcase_18 AC 159 ms
10,112 KB
testcase_19 AC 177 ms
11,520 KB
testcase_20 AC 192 ms
11,904 KB
testcase_21 AC 181 ms
10,624 KB
testcase_22 AC 201 ms
12,160 KB
testcase_23 AC 179 ms
10,368 KB
testcase_24 AC 189 ms
11,904 KB
testcase_25 AC 201 ms
11,904 KB
testcase_26 AC 180 ms
10,880 KB
testcase_27 AC 190 ms
11,136 KB
testcase_28 AC 162 ms
9,472 KB
testcase_29 WA -
testcase_30 AC 197 ms
11,648 KB
testcase_31 AC 204 ms
11,904 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 174 ms
11,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include <atcoder/all>
//using namespace atcoder;
using ll=long long;
using Graph=vector<vector<pair<int,int>>>;
#define MAX 200003
#define MOD 1000000007
#define INF 1000000000000000000

int main(){
  int N,M;
  cin>>N>>M;
  vector<int> u(M),v(M);
  vector<ll> c(M),d(M);
  for(int i=0;i<M;i++){
    cin>>u[i]>>v[i]>>c[i]>>d[i];
    u[i]--;
    v[i]--;
  }

  Graph G(N);
  for(int i=0;i<M;i++){
    G[u[i]].push_back(make_pair(v[i],i));
    G[v[i]].push_back(make_pair(u[i],i));
  }

  vector<ll> dist(N,INF);
  dist[0]=0;
  priority_queue<pair<ll,int>,vector<pair<ll,int>>,greater<pair<ll,int>>> pq;
  pq.push(make_pair(dist[0],0));
  while(!pq.empty()){
    int v=pq.top().second;
    ll l=pq.top().first;
    pq.pop();
    if(l>dist[v]){
      continue;
    }
    for(auto p:G[v]){
      int nv=p.first;
      int e=p.second;
      if(dist[v]+c[e]<dist[nv]){
        dist[nv]=dist[v]+c[e];
        pq.push(make_pair(dist[nv],nv));
      }
    }
  }

  int x=N-1;
  vector<bool> used(M,false);
  while(x!=0){
    for(auto p:G[x]){
      int nv=p.first;
      int e=p.second;
      if(dist[x]==dist[nv]+c[e]){
        x=nv;
        used[e]=true;
        break;
      }
    }
  }

  ll ans=dist[N-1];
  for(int i=0;i<N-1;i++){
    dist[i]=INF;
  }
  dist[N-1]=0;
  pq.push(make_pair(dist[N-1],N-1));
  while(!pq.empty()){
    int v=pq.top().second;
    ll l=pq.top().first;
    pq.pop();
    if(l>dist[v]){
      continue;
    }
    for(auto p:G[v]){
      int nv=p.first;
      int e=p.second;
      if(used[e]==true){
        if(dist[v]+d[e]<dist[nv]){
          dist[nv]=dist[v]+d[e];
          pq.push(make_pair(dist[nv],nv));
        }
      }else{
        if(dist[v]+c[e]<dist[nv]){
          dist[nv]=dist[v]+c[e];
          pq.push(make_pair(dist[nv],nv));
        }
      }
    }
  }
  ans+=dist[0];
  cout<<ans<<endl;
}
0