結果
問題 | No.2982 Logic Battle |
ユーザー | friedrice |
提出日時 | 2024-12-07 17:29:37 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,295 bytes |
コンパイル時間 | 5,250 ms |
コンパイル使用メモリ | 316,620 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-07 17:29:44 |
合計ジャッジ時間 | 6,702 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
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 | - |
testcase_29 | WA | - |
testcase_30 | AC | 4 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 5 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; using mint = atcoder::modint998244353; using maxt = atcoder::modint1000000007; struct power { ll damage, attack; }; int main() { int N; cin >> N; vector<vector<ll>> A(N, vector<ll>(3)); for(vector<ll> &o : A) { for(ll &p : o) { cin >> p; } } vector<vector<power>> dp(N + 1, vector<power>(3)); for(int i = 1; i <= N; i++) { dp.at(i).at(0).attack = max(dp.at(i - 1).at(1).attack, dp.at(i - 1).at(2).attack) + A.at(i - 1).at(0); dp.at(i).at(0).damage = max(dp.at(i - 1).at(1).damage, dp.at(i - 1).at(2).damage) + dp.at(i).at(0).attack; dp.at(i).at(1).attack = max(dp.at(i - 1).at(0).attack, dp.at(i - 1).at(2).attack) + A.at(i - 1).at(1); dp.at(i).at(1).damage = max(dp.at(i - 1).at(0).damage, dp.at(i - 1).at(2).damage) + dp.at(i).at(1).attack; dp.at(i).at(2).attack = max(dp.at(i - 1).at(0).attack, dp.at(i - 1).at(1).attack) + A.at(i - 1).at(2); dp.at(i).at(2).damage = max(dp.at(i - 1).at(0).damage, dp.at(i - 1).at(1).damage) + dp.at(i).at(2).attack; for(power &o : dp.at(i)) { if(o.attack > 0) { o.attack--; } } } cout << max(max(dp.at(N).at(0).damage, dp.at(N).at(1).damage), dp.at(N).at(2).damage) << endl; }