結果
問題 | No.472 平均順位 |
ユーザー | tomorrow |
提出日時 | 2022-05-18 01:27:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,193 bytes |
コンパイル時間 | 2,208 ms |
コンパイル使用メモリ | 203,244 KB |
実行使用メモリ | 297,088 KB |
最終ジャッジ日時 | 2024-09-16 00:33:22 |
合計ジャッジ時間 | 9,221 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 7 ms
6,912 KB |
testcase_09 | AC | 25 ms
15,360 KB |
testcase_10 | AC | 20 ms
13,312 KB |
testcase_11 | AC | 115 ms
36,096 KB |
testcase_12 | AC | 81 ms
28,288 KB |
testcase_13 | AC | 347 ms
88,832 KB |
testcase_14 | MLE | - |
testcase_15 | AC | 406 ms
88,832 KB |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | AC | 53 ms
25,344 KB |
testcase_19 | AC | 179 ms
53,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template <typename T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } return false; } template <typename T> bool chmin(T& a, const T& b) { if (a > b) { a = b; return true; } return false; } constexpr ll inf = (1LL << 62); int dp[5005][15005]; int main() { ll n, p; cin >> n >> p; vector<int> a(n), b(n), c(n); for (ll i = 0; i < n; ++i) { cin >> a[i] >> b[i] >> c[i]; } for (ll i = 0; i <= p; ++i) { for (ll j = 0; j <= n; ++j) { dp[j][i] = (1 << 30); } } dp[0][0] = 0; for (ll i = 0; i < n; ++i) { for (ll j = 0; j <= p; ++j) { if (j >= 3) { chmin(dp[i + 1][j], dp[i][j - 3] + 1); } if (j >= 2) { chmin(dp[i + 1][j], dp[i][j - 2] + c[i]); } if (j >= 1) { chmin(dp[i + 1][j], dp[i][j - 1] + b[i]); } chmin(dp[i + 1][j], dp[i][j] + a[i]); } } cout << fixed << setprecision(10) << static_cast<double>(dp[n][p]) / n << endl; }