結果
問題 | No.1449 新プロランド |
ユーザー | SSRS |
提出日時 | 2021-03-31 14:29:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,132 bytes |
コンパイル時間 | 1,822 ms |
コンパイル使用メモリ | 184,620 KB |
実行使用メモリ | 20,992 KB |
最終ジャッジ日時 | 2024-06-06 10:50:54 |
合計ジャッジ時間 | 16,526 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
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 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MAX = 50000; const int INF = 1000000000; int main(){ int N, M; cin >> N >> M; vector<vector<pair<int, int>>> E(N); for (int i = 0; i < M; i++){ int A, B, C; cin >> A >> B >> C; A--; B--; E[A].push_back(make_pair(C, B)); E[B].push_back(make_pair(C, A)); } vector<int> T(N); for (int i = 0; i < N; i++){ cin >> T[i]; } vector<vector<int>> d(N, vector<int>(MAX, INF)); priority_queue<tuple<int, int, int>, vector<tuple<int, int, int>>, greater<tuple<int, int, int>>> pq; pq.push(make_tuple(0, 0, 0)); while (!pq.empty()){ int dd = get<0>(pq.top()); int v = get<1>(pq.top()); int c = get<2>(pq.top()); pq.pop(); if (d[v][c] == INF){ d[v][c] = dd; if (c + T[v] <= MAX){ for (auto P : E[v]){ int w = P.second; if (d[w][c + T[v]] == INF){ pq.push(make_tuple(dd + T[v] + P.first / (c + T[v]), w, c + T[v])); } } } } } int ans = INF; for (int i = 0; i <= MAX; i++){ ans = min(ans, d[N - 1][i]); } cout << ans << endl; }