結果
問題 | No.472 平均順位 |
ユーザー | hiromi-mi |
提出日時 | 2018-12-30 22:45:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,027 bytes |
コンパイル時間 | 666 ms |
コンパイル使用メモリ | 64,416 KB |
実行使用メモリ | 299,692 KB |
最終ジャッジ日時 | 2024-10-09 05:22:25 |
合計ジャッジ時間 | 3,482 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 4 ms
11,912 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | AC | 3 ms
9,828 KB |
testcase_08 | AC | 9 ms
19,632 KB |
testcase_09 | AC | 26 ms
29,820 KB |
testcase_10 | AC | 26 ms
37,644 KB |
testcase_11 | AC | 63 ms
61,420 KB |
testcase_12 | AC | 51 ms
47,744 KB |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | AC | 38 ms
25,472 KB |
testcase_19 | MLE | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <iterator> #include <cmath> /* #include <map> #include <functional> #include <set> #include <queue> #include <cstdio> */ using namespace std; typedef long long ll; //typedef pair<ll, ll> P; int N, P; int a[5050], b[5050], c[5050]; // コンテストi までにj問題といたときの順位の合計 int dp[5050][15050]; const int INF = 1 << 30; #define abc(i, j, k) ((j >= 0 && dp[i][j] < INF) ? (dp[i][j] + k) : (INF)) int main() { cin >> N >> P; for (int i=0;i<N;i++) { cin >> a[i] >> b[i] >> c[i]; } for (int i=0;i<=N;i++) { for (int j=0;j<=N*3;j++) { dp[i][j] = INF; } } dp[0][0] = 0; for (int i=0;i<N;i++) { for (int j=0;j<=P;j++) { dp[i+1][j] = min({abc(i, j, a[i]), abc(i, j-1, b[i]), abc(i, j-2, c[i]), abc(i, j-3, 1)}); } } cout << (double)dp[N][P] / (double)N << endl; }