結果

問題 No.788 トラックの移動
ユーザー karinohitokarinohito
提出日時 2024-09-17 00:56:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 216,832 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-09-17 00:57:02
合計ジャッジ時間 5,548 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 416 ms
34,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 100 ms
11,136 KB
testcase_05 AC 395 ms
34,816 KB
testcase_06 AC 406 ms
34,816 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 128 ms
34,688 KB
testcase_16 AC 472 ms
34,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(ll i=0;i<n;i++)
using ll = long long;


int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll N,M,L;
    cin>>N>>M>>L;
    vector<ll> T(N);
    ll cnt=0;
    for(int i=0;i<N;i++){
        cin>>T[i];
        if(T[i]>0)cnt++;
    }
    if(cnt==1){
        cout<<0<<endl;
        return 0;
    }
    vector<vector<pair<ll,ll>>> G(N);
    for(int i=0;i<M;i++){
        ll a,b,c;
        cin>>a>>b>>c;
        a--;b--;
        G[a].push_back({b,c});
        G[b].push_back({a,c});
    }
    ll an=1e18;
    vector<vector<ll>> dist(N);
    for(int i=0;i<N;i++){
        vector<bool> seen(N,false);
        priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>> Q;
        vector<ll> D(N,1e18);
        Q.push({0,i});
        D[i]=0;
        while(!Q.empty()){
            auto [c,p]=Q.top();
            Q.pop();
            if(seen[p])continue;
            seen[p]=1;
            for(auto [v,w]:G[p]){
                if(seen[v])continue;
                if(D[v]<=c+w)continue;
                D[v]=c+w;
                Q.push({D[v],v});
            }
        }
        dist[i]=D;
    }
    for(int i=0;i<N;i++){
        ll res=0;
        for(int j=0;j<N;j++){
            res+=dist[i][j]*T[j]*2;
        }
        for(int j=0;j<N;j++){
            if(T[j]>0)an=min(an,res-dist[i][j]*2+dist[i][j]+dist[L-1][j]);
        }
    }
    cout<<an<<endl;
    
}
0