結果
問題 | No.472 平均順位 |
ユーザー | aonek0 |
提出日時 | 2019-08-24 14:56:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,116 bytes |
コンパイル時間 | 785 ms |
コンパイル使用メモリ | 95,480 KB |
実行使用メモリ | 590,080 KB |
最終ジャッジ日時 | 2024-10-14 12:46:34 |
合計ジャッジ時間 | 3,873 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | MLE | - |
testcase_15 | WA | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | WA | - |
testcase_19 | AC | 72 ms
84,352 KB |
ソースコード
#include<iostream> #include <algorithm> #include <functional> #include<vector> #include<math.h> #include <assert.h> #include<bitset> #include<string> #include <deque> #include<queue> #include <iomanip> #include<map> #include <random> #include<type_traits> #include<stack> #include <sstream> #include <limits> #include <numeric> #include<string.h> #include<set> #include <climits> using namespace std; typedef unsigned long long ull; #define ll long long int ll mod = 1000000007; //typedef vector<int> V; //typedef vector<V> VV; //typedef vector<VV> VVV; ll a[5003], b[5003], c[5003],dp[5003][15004]; int main() { ll n, p; cin >> n >> p; for (int i = 1; i <= n; i++) { cin >> a[i] >> b[i] >> c[i]; } for (int i = 0; i <= n; i++) { for (int j = 0; j <= p; j++) { dp[i][j] = 10000000000000000; } } dp[0][0] = 0; for (int i = 1; i <= n; i++) { for (int j = 0; j <= p; j++) { dp[i][j] = dp[i - 1][j]+a[i]; if(j-1>=0)dp[i][j] = min(dp[i][j], dp[i - 1][j - 1]+b[i]); if(j-2>=0)dp[i][j] = min(dp[i][j], dp[i - 1][j - 2]+c[i]); } } long double y=(double)dp[n][p]; cout << y/n << endl; }