結果

問題 No.1449 新プロランド
ユーザー MZKiMZKi
提出日時 2021-03-31 15:02:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,667 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 173,544 KB
実行使用メモリ 74,496 KB
最終ジャッジ日時 2024-06-06 14:18:36
合計ジャッジ時間 15,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,632 KB
testcase_01 AC 26 ms
7,168 KB
testcase_02 AC 107 ms
8,704 KB
testcase_03 AC 9 ms
7,040 KB
testcase_04 AC 14 ms
7,168 KB
testcase_05 AC 1,667 ms
70,656 KB
testcase_06 AC 866 ms
47,872 KB
testcase_07 AC 468 ms
50,176 KB
testcase_08 AC 1,064 ms
74,496 KB
testcase_09 AC 409 ms
18,048 KB
testcase_10 AC 452 ms
63,616 KB
testcase_11 AC 129 ms
70,528 KB
testcase_12 AC 1,082 ms
62,720 KB
testcase_13 AC 460 ms
26,624 KB
testcase_14 AC 159 ms
73,600 KB
testcase_15 AC 1,053 ms
54,016 KB
testcase_16 AC 680 ms
32,256 KB
testcase_17 AC 764 ms
46,208 KB
testcase_18 AC 5 ms
6,272 KB
testcase_19 AC 41 ms
55,808 KB
testcase_20 AC 4 ms
5,504 KB
testcase_21 AC 269 ms
50,176 KB
testcase_22 AC 89 ms
9,472 KB
testcase_23 AC 356 ms
68,224 KB
testcase_24 AC 301 ms
15,744 KB
testcase_25 AC 181 ms
13,440 KB
testcase_26 AC 16 ms
6,400 KB
testcase_27 AC 1,562 ms
73,728 KB
testcase_28 AC 704 ms
28,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
template<class T> inline bool chmin(T&a, T b){if(a > b){a = b; return true;}else{return false;}}
template<class T> inline bool chmax(T&a, T b){if(a < b){a = b; return true;}else{return false;}}
#define ll long long
#define double long double
#define rep(i,n) for(int i=0;i<(n);i++)
#define REP(i,n) for(int i=1;i<=(n);i++)
#define mod (ll)(1e9+7)
#define inf (ll)(3e18+7)
#define eps (double)(1e-9)
#define pi (double) acos(-1)
#define P pair<int,int>
//#define PiP pair<int,pair<int,int>>
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
using namespace std;

using PiP = pair<ll, pair<ll, ll>>;

struct edge {
    ll to, cost;
};

int main() {
    int n, m;
    cin >> n >> m;
    vector<vector<edge>> G(n);
    vector<ll> T(n);
    rep(i, m){
        ll a, b, c;
        cin >> a >> b >> c;
        a--; b--;
        G[a].push_back({b, c});
        G[b].push_back({a, c});
    }    
    rep(i, n)cin >> T[i];
    vector<vector<ll>> d(n, vector<ll>(100010, inf));
    priority_queue<PiP, vector<PiP>, greater<PiP>> que;
    d[0][0] = 0;
    que.push({0, {0, 0}});
    while(!que.empty()){
        PiP p = que.top();
        que.pop();
        ll v = p.second.first;
        ll t = p.second.second;
        if(p.first > d[v][t])continue;
        for(auto x : G[v]){
            ll cst = d[v][t] + T[v] + (x.cost / (t + T[v]));
            if(t + T[v] >= 100010)continue;
            if(chmin(d[x.to][t + T[v]], cst)){
                que.push({cst, {x.to, t + T[v]}});
            }
        }
    }
    ll ans = inf;
    rep(i, 10010)chmin(ans, d[n-1][i]);
    cout << ans << endl;
}
0