結果
問題 | No.472 平均順位 |
ユーザー | nenuon |
提出日時 | 2018-03-02 18:06:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,196 bytes |
コンパイル時間 | 1,079 ms |
コンパイル使用メモリ | 95,540 KB |
実行使用メモリ | 296,960 KB |
最終ジャッジ日時 | 2024-06-11 17:44:35 |
合計ジャッジ時間 | 3,756 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,376 KB |
testcase_04 | AC | 4 ms
10,496 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
6,784 KB |
testcase_07 | AC | 4 ms
11,008 KB |
testcase_08 | AC | 12 ms
28,416 KB |
testcase_09 | AC | 27 ms
62,464 KB |
testcase_10 | AC | 29 ms
76,160 KB |
testcase_11 | AC | 54 ms
115,200 KB |
testcase_12 | AC | 49 ms
108,032 KB |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | AC | 39 ms
74,496 KB |
testcase_19 | MLE | - |
ソースコード
#include <algorithm> #include <cstdio> #include <iostream> #include <map> #include <cmath> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <vector> #include <stdlib.h> #include <stdio.h> #include <bitset> #include <cstring> #include <deque> #include <iomanip> #include <limits> using namespace std; #define FOR(I,A,B) for(int I = (A); I < (B); ++I) #define CLR(mat) memset(mat, 0, sizeof(mat)) typedef long long ll; int dp[5005][15005]; // := i+1日めで正解数がjの時の順位の和の最小 int main() { ios::sync_with_stdio(false); cin.tie(0); int N, P; cin >> N >> P; FOR(i,0,N+1) FOR(j,0,15005) dp[i][j] = 2e9; dp[0][0] = 0; int a[N], b[N], c[N]; FOR(i,0,N) cin >> a[i] >> b[i] >> c[i]; FOR(i,0,N) { FOR(j,0,P+1) { // 0問 dp[i+1][j] = min(dp[i+1][j], dp[i][j] + a[i]); // 1問 if(j+1<=P) dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j] + b[i]); // 2問 if(j+2<=P) dp[i+1][j+2] = min(dp[i+1][j+2], dp[i][j] + c[i]); // 3問 if(j+3<=P) dp[i+1][j+3] = min(dp[i+1][j+3], dp[i][j] + 1); } } cout << fixed << setprecision(17) << (double)dp[N][P] / N << endl; return 0; }