結果
問題 | No.472 平均順位 |
ユーザー | Div9851K |
提出日時 | 2019-07-16 20:59:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 678 bytes |
コンパイル時間 | 1,397 ms |
コンパイル使用メモリ | 159,076 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-08 12:05:47 |
合計ジャッジ時間 | 4,691 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; const ll MOD = 1e9 + 7; int dp[2][15001]; int a[5000][4]; int main() { int N, P; cin >> N >> P; for (int i = 0; i < N; i++) { for (int j = 0; j < 3; j++) cin >> a[i][j]; a[i][3] = 1; } fill((int*)dp, (int*)(dp + 2), 1 << 30); dp[0][0] = 0; for (int i = 0; i < N; i++) { for (int j = 0; j <= min(3 * i, P); j++) { if (dp[i][j] == 1 << 30) continue; for (int k = 0; k <= 3; k++) { if (j + k <= P) dp[(i + 1) & 1][j + k] = min(dp[(i + 1) & 1][j + k], dp[i & 1][j] + a[i][k]); } } for (int j = 0; j <= P; j++) dp[i & 1][j] = 1 << 30; } printf("%.10lf\n", dp[N & 1][P] * 1.0 / N); }