結果

問題 No.807 umg tours
ユーザー satou_a_mansatou_a_man
提出日時 2019-03-23 00:29:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 775 ms / 4,000 ms
コード長 2,083 bytes
コンパイル時間 2,906 ms
コンパイル使用メモリ 237,352 KB
実行使用メモリ 45,424 KB
最終ジャッジ日時 2024-05-02 23:38:06
合計ジャッジ時間 10,626 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 440 ms
30,284 KB
testcase_12 AC 386 ms
26,476 KB
testcase_13 AC 596 ms
34,456 KB
testcase_14 AC 190 ms
17,188 KB
testcase_15 AC 147 ms
14,556 KB
testcase_16 AC 614 ms
37,144 KB
testcase_17 AC 746 ms
45,424 KB
testcase_18 AC 775 ms
45,040 KB
testcase_19 AC 752 ms
42,184 KB
testcase_20 AC 404 ms
25,944 KB
testcase_21 AC 382 ms
26,796 KB
testcase_22 AC 143 ms
13,532 KB
testcase_23 AC 104 ms
11,316 KB
testcase_24 AC 361 ms
38,276 KB
testcase_25 AC 772 ms
44,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <unordered_set>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define repeat(i,s,n) for(int (i)=s; (i)<(n); (i)++)
#define revrep(i,n) for(int (i)=(n)-1;i>=0; i--)

// example const ll inf=1e15;
void dijkstra(int s, map<int,map<int,ll>>& g, vector<vector<ll>>& dist,const ll inf, const ll zero) {
  int n=dist[0].size();
  vector<vector<bool>> visited = vector<vector<bool>>(2, vector<bool>(n));
  fill(dist[0].begin(),dist[0].end(),inf);
  fill(dist[1].begin(),dist[1].end(),inf);
  using P = tuple<ll,int,int>;
  priority_queue<P,vector<P>, greater<P>> pq;
  dist[0][s]=zero;
  dist[1][s]=zero;
  //visited[s]=true;
  pq.push(make_tuple(0,s,0));
  pq.push(make_tuple(0,s,1));
  while(!pq.empty()) {
    int v,b;
    ll d;
    tie(d,v,b)=pq.top();
    pq.pop();
    if(visited[b][v]) continue;
    visited[b][v]=true;
    for(auto& uw : g[v]) {
      int u;
      ll w;
      tie(u,w)=uw;
      if(b==0) {
        if(visited[0][u])continue;
        if(d<dist[1][u]) {
          dist[1][u]=d;
          pq.push(make_tuple(dist[1][u],u,1));
        }
        if(d+w<dist[0][u]) {
          dist[0][u]=d+w;
          pq.push(make_tuple(dist[0][u],u,0));
        }
      } else {
        // b=1
        if(visited[1][u]) continue;
        if(d+w<dist[1][u]) {
          dist[1][u]=d+w;
          pq.push(make_tuple(dist[1][u],u,1));
        }
      }
    }
  }
}

void dfs(int s, vector<ll>& min_c, vector<vector<int>>& ng,map<int,map<int,ll>>& g) {
  // we have min_c[s]
  for(auto& u : ng[s]) {
    min_c[u]=min(min_c[s],g[s][u]);
    dfs(u,min_c,ng,g);
  }
}

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout<<setprecision(std::numeric_limits<float>::max_digits10);
  int n,m;
  cin>>n>>m;
  map<int,map<int,ll>> g;
  rep(i,m) {
    ll a,b,c;
    cin>>a>>b>>c;
    g[a-1][b-1]=c;
    g[b-1][a-1]=c;
  }
  vector<vector<ll>> dist = vector<vector<ll>>(2,vector<ll>(n));
  const ll inf=1e15;
  dijkstra(0,g,dist,inf,0LL);
  rep(i,n) {
    cout << dist[0][i]+dist[1][i]<<endl;
  }
  return 0;
}
0