結果

問題 No.788 トラックの移動
ユーザー mtsdmtsd
提出日時 2019-02-08 22:12:05
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,201 bytes
コンパイル時間 793 ms
コンパイル使用メモリ 88,868 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-14 03:43:21
合計ジャッジ時間 3,794 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,384 KB
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <utility>
#include <queue>
#include <set>
#include <map>
#include <deque>
#include <iomanip>
#include <cstdio>
#include <stack>
#include <numeric>

using namespace std;
#define ll int
typedef pair<int,int> PII;
typedef vector<int> VI;
typedef vector<VI> VVI;
#define  MP make_pair
#define  PB push_back
#define inf  1e+8
#define rep(i,n) for(int i=0;i<(int)(n);++i)

vector<vector<pair<ll,int> > > g;

int main(){
    int n,m,s;
    cin >> n >> m >> s;
    vector<ll> dd(n,inf);
    vector<ll> t(n);
    int cnt=0;
    rep(i,n){
        cin >> t[i]; 
        if(t[i]>0)cnt++;
    }
    if(cnt==1){
        cout << 0 << endl;
        return 0;
    }
    s--;
    g.resize(n);
    rep(i,m){
        int a,b,c;
        cin >> a >> b >> c;
        a--;b--;
        g[a].push_back(MP(c,b));
        g[b].push_back(MP(c,a));
    }
    dd[s] = 0;
    priority_queue<pair<ll,int>,vector<pair<ll,int> >,greater<pair<ll,int> >  >pq;
    pq.push(MP(0,s));
    while(!pq.empty()){
        auto x = pq.top();
        pq.pop();
        if(dd[x.second]!=x.first)continue;
        for(auto y:g[x.second]){
            if(dd[y.second]>dd[x.second]+y.first){
                dd[y.second] = dd[x.second]+y.first;
                pq.push(MP(dd[y.second],y.second));
            }
        }
    }   
    ll ans = inf;
    for(int i=0;i<n;i++){
        pq.push(MP(0,i));
        vector<ll> d(n,inf);
        d[i] = 0;
        while(!pq.empty()){
            auto x = pq.top();
            pq.pop();
            if(d[x.second]!=x.first)continue;
            for(auto y:g[x.second]){
                if(d[y.second]>d[x.second]+y.first){
                    d[y.second] = d[x.second]+y.first;
                    pq.push(MP(d[y.second],y.second));
                }
            }
        }
        ll tmp = 0;
        rep(j,n){
            tmp += 2*d[j]*t[j];
        }
        ll ma = -inf;
        rep(j,n){
            if(t[j]>0){
                ma = max(ma,d[j]-dd[j]);
            }
        }
        tmp -= ma;
        //cerr << tmp << endl;
        ans = min(ans,tmp);
    }
    cout << ans << endl;
    return 0;
}
0