結果
問題 | No.2693 Sword |
ユーザー | addnine |
提出日時 | 2024-03-22 21:42:02 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 782 bytes |
コンパイル時間 | 2,127 ms |
コンパイル使用メモリ | 202,356 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-09-30 11:09:58 |
合計ジャッジ時間 | 3,093 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 29 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define all(v) (v).begin(), (v).end() using ll = long long; using ld = long double; using pint = pair<int, int>; using pll = pair<ll, ll>; ll MX = 1e18; ll dp[1010][1010]; int main() { ll N, P, K; cin >> N >> P >> K; vector<ll> T(N), B(N); for (int i = 0; i < N; i++) cin >> T[i] >> B[i]; dp[0][0] = P; for (int i = 0; i < N; i++) { for (int j = 0; j <= K; j++) { ll nxt = (T[i] == 1 ? dp[i][j] + B[i] : dp[i][j] * 2); if (nxt > MX) { cout << -1 << endl; return 0; } dp[i+1][j+1] = max(dp[i][j+1], nxt); dp[i+1][j] = max(dp[i+1][j], dp[i][j]); } } cout << (dp[N][K] > MX ? -1 : dp[N][K]) << endl; }