結果
問題 | No.1449 新プロランド |
ユーザー | MZKi |
提出日時 | 2021-03-31 14:56:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,582 bytes |
コンパイル時間 | 2,066 ms |
コンパイル使用メモリ | 173,420 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-06 10:53:39 |
合計ジャッジ時間 | 7,342 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 6 ms
8,320 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | RE | - |
testcase_28 | RE | - |
ソースコード
#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>(10010, 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(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; }