結果

問題 No.807 umg tours
ユーザー taki_gtaki_g
提出日時 2019-04-01 11:05:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,403 ms / 4,000 ms
コード長 1,635 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 174,736 KB
実行使用メモリ 70,064 KB
最終ジャッジ日時 2024-05-02 23:44:32
合計ジャッジ時間 11,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,936 KB
testcase_01 AC 3 ms
7,808 KB
testcase_02 AC 4 ms
8,064 KB
testcase_03 AC 3 ms
8,028 KB
testcase_04 AC 4 ms
7,936 KB
testcase_05 AC 4 ms
7,936 KB
testcase_06 AC 4 ms
8,000 KB
testcase_07 AC 4 ms
7,992 KB
testcase_08 AC 3 ms
7,808 KB
testcase_09 AC 3 ms
7,936 KB
testcase_10 AC 4 ms
7,936 KB
testcase_11 AC 519 ms
41,892 KB
testcase_12 AC 500 ms
40,452 KB
testcase_13 AC 937 ms
65,320 KB
testcase_14 AC 302 ms
26,332 KB
testcase_15 AC 239 ms
24,520 KB
testcase_16 AC 600 ms
42,636 KB
testcase_17 AC 913 ms
53,136 KB
testcase_18 AC 1,403 ms
69,672 KB
testcase_19 AC 1,104 ms
70,064 KB
testcase_20 AC 325 ms
24,556 KB
testcase_21 AC 357 ms
25,124 KB
testcase_22 AC 152 ms
15,480 KB
testcase_23 AC 109 ms
14,232 KB
testcase_24 AC 309 ms
32,812 KB
testcase_25 AC 536 ms
42,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll i=0, i##_len=(n); i<i##_len; ++i)
#define REP(i,num,n) for(ll i=num, i##_len=(n); i<i##_len; ++i)
#define all(x) (x).begin(),(x).end()
#define sz(x) ((ll)(x).size())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
#define MEMSET(v, h) memset((v), h, sizeof(v))
#define pb push_back
#define mp make_pair
#define y0 y3487465
#define y1 y8687969
#define j0 j1347829
#define j1 j234892
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
using namespace std;

typedef pair<ll, ll> P;
ll dp[200010];
vector<vector<P>> road(200010);

int main(){
  ll N,M;
  cin >> N >> M;
  rep(i,M){
    ll a,b,c;
    cin >> a >> b >> c;
    road[a].push_back(P(b,c));
    road[a].push_back(P(b+N,0));
    road[b].push_back(P(a,c));
    road[b].push_back(P(a+N,0));
    road[a+N].push_back(P(b+N,c));
    road[b+N].push_back(P(a+N,c));
  }
  
  priority_queue<P,vector<P>,greater<P>> q;
  q.push(P(1,0));

  for(int i=2;i<=2*N;i++){
      if(i!=N+1) dp[i] = (ll)1e18;
  }

  while(!q.empty()){
    P p = q.top();q.pop();
    ll num = p.first;
    ll cost = p.second;
    
    if(dp[num] < cost)continue;
    
    for(auto next_p: road[num]){
      ll next_num = next_p.first;
      ll next_cost = next_p.second;
      if(dp[next_num] > cost+next_cost){
        dp[next_num] = cost+next_cost;
        q.push(P(next_num,dp[next_num]));
      }
    }
  }
  
  REP(i,1,N+1){
    cout << (dp[i]+dp[i+N]) << endl;
  }



  return 0;
}
0