結果
問題 | No.2712 Play more! |
ユーザー | Today03 |
提出日時 | 2024-03-31 21:21:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,044 bytes |
コンパイル時間 | 2,196 ms |
コンパイル使用メモリ | 209,104 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 21:24:16 |
合計ジャッジ時間 | 3,481 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 24 ms
6,816 KB |
testcase_08 | AC | 24 ms
6,820 KB |
testcase_09 | AC | 24 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | AC | 13 ms
6,820 KB |
testcase_12 | AC | 32 ms
6,820 KB |
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 | AC | 37 ms
6,820 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 6 ms
6,820 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 7 ms
6,816 KB |
testcase_32 | AC | 7 ms
6,820 KB |
testcase_33 | AC | 2 ms
6,820 KB |
testcase_34 | AC | 2 ms
6,816 KB |
testcase_35 | WA | - |
ソースコード
#include <bits/stdc++.h> #ifdef LOCAL #include "./debug.cpp" #else #define debug(...) #define print_line #endif using namespace std; using ll = long long; int main() { int N, M; cin >> N >> M; vector<ll> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } vector<vector<pair<int, ll>>> G(N); for (int i = 0; i < M; i++) { int a, b; ll c; cin >> a >> b >> c; a--; b--; G[a].push_back({b, c}); } vector<ll> dst(N, LLONG_MIN); dst[0] = A[0]; for (int i = 0; i < N; i++) { bool fin = true; for (int j = 0; j < N; j++) { for (auto [nxt, cost] : G[j]) { if (dst[nxt] < dst[j] - cost + A[nxt]) { dst[nxt] = dst[j] - cost + A[nxt]; fin = false; } } } if (fin) { break; } if (i == N - 1) { cout << "inf" << endl; return 0; } } cout << dst[N - 1] << endl; }