結果
問題 | No.2712 Play more! |
ユーザー | startcpp |
提出日時 | 2024-03-31 15:27:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,171 bytes |
コンパイル時間 | 958 ms |
コンパイル使用メモリ | 93,284 KB |
実行使用メモリ | 142,360 KB |
最終ジャッジ日時 | 2024-09-30 20:43:37 |
合計ジャッジ時間 | 4,424 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,644 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <functional> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <tuple> #include <cstdio> #include <cmath> #include <cassert> #define rep(i, n) for(i = 0; i < n; i++) #define int long long using namespace std; const int INF = 1e+16; int n, m; int a[2500]; vector<int> et[2500]; vector<int> ec[2500]; int dp[2500]; signed main() { int i, j, k; cin >> n >> m; rep(i, n) cin >> a[i]; rep(i, m) { int u, v, c; cin >> u >> v >> c; u--; v--; et[u].push_back(v); ec[u].push_back(c); } rep(i, n) dp[i] = -INF; typedef pair<int, int> P; priority_queue<P> que; int loopCnt = 0; que.push(P(a[0], 0)); while (!que.empty()) { P now = que.top(); que.pop(); int cst = now.first; int v = now.second; if (dp[v] >= cst) continue; dp[v] = cst; loopCnt++; if (loopCnt > 3 * n * n && v == n - 1) { cout << "inf" << endl; return 0; } for (int i = 0; i < et[v].size(); i++) { int nv = et[v][i]; int nc = cst + a[nv] - ec[v][i]; if (dp[nv] < nc) { que.push(P(nc, nv)); } } } cout << dp[n - 1] << endl; return 0; }