結果

問題 No.807 umg tours
ユーザー eSeFeSeF
提出日時 2020-11-06 11:57:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 343 ms / 4,000 ms
コード長 2,289 bytes
コンパイル時間 1,447 ms
コンパイル使用メモリ 133,640 KB
実行使用メモリ 23,120 KB
最終ジャッジ日時 2024-07-22 11:41:37
合計ジャッジ時間 6,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 225 ms
16,756 KB
testcase_12 AC 181 ms
15,448 KB
testcase_13 AC 268 ms
18,324 KB
testcase_14 AC 105 ms
10,968 KB
testcase_15 AC 80 ms
9,300 KB
testcase_16 AC 283 ms
18,648 KB
testcase_17 AC 343 ms
23,000 KB
testcase_18 AC 334 ms
23,120 KB
testcase_19 AC 319 ms
20,564 KB
testcase_20 AC 161 ms
12,756 KB
testcase_21 AC 165 ms
12,936 KB
testcase_22 AC 70 ms
8,404 KB
testcase_23 AC 53 ms
7,508 KB
testcase_24 AC 165 ms
17,024 KB
testcase_25 AC 322 ms
23,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<limits>
#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<queue>
#include<deque>
#include<stack>
#include<string>
#include<string.h>
#include<vector>
#include<set>
#include<map>
#include<bitset>
#include<stdlib.h>
#include<cassert>
#include<time.h>
#include<bitset>
#include<numeric>
#include<unordered_set>
#include<unordered_map>
#include<complex>
using namespace std;
typedef long long ll;
const int mod = 1e9 + 7;
const ll infll = (1LL << 62) - 1;
const int inf = (1 << 30) - 1;
#define rep(i,n) for (int i=0; i < (n); i++)
typedef double D;      // 座標値の型。doubleかlong doubleを想定
typedef complex<D> P;  // Point
typedef pair<P, P> L;  // Line
typedef vector<P> VP;
typedef pair<int,int> PII;
typedef pair<ll,PII> Plii;
const D EPS = 1e-9;    // 許容誤差。問題によって変える
#define X real()
#define Y imag()
#define LE(n,m) ((n) < (m) + EPS)
#define GE(n,m) ((n) + EPS > (m))
#define EQ(n,m) (abs((n)-(m)) < EPS)
#define mkp(x,y) make_pair(x,y)
D dot(P a, P b) {
  return (conj(a)*b).X;
}
struct E{
    int t;
    ll w;
    E(int to,ll weight){
        t=to;
        w=weight;
    }
};
vector<vector<E>>G;
ll dp[100010][2];
int main(){
    cout << fixed << setprecision(10);
    int N,M;
    cin >> N >> M;
    rep(i,N)G.push_back(vector<E>());
    rep(i,M){
        int a,b;ll c;
        cin >> a >> b >> c;
        a--;b--;
        G[a].push_back(E(b,c));
        G[b].push_back(E(a,c));
    }
    rep(i,100010)rep(j,2)dp[i][j]=infll;
    dp[0][0]=dp[0][1]=0;
    priority_queue<Plii>Q;
    Q.push(mkp(0,mkp(0,0)));
    while(!Q.empty()){
        auto pl=Q.top();
        Q.pop();
        int v=pl.second.first;
        int f=pl.second.second;
        ll W=-pl.first;
        if(dp[v][f]<W)continue;
        for(auto e:G[v]){
            //no ticket
            if(dp[e.t][f]>W+e.w){
                dp[e.t][f]=W+e.w;
                Q.push(mkp(-(W+e.w),mkp(e.t,f)));
            }
            //use ticket
            if(f==false){
                if(dp[e.t][1]>W){
                    dp[e.t][1]=W;
                    Q.push(mkp(-W,mkp(e.t,1)));
                }
            }
        }
    }
    for(int i=0;i<N;i++){
        cout << dp[i][0]+dp[i][1] << "\n";
    }    
    return 0;
}
0