結果
問題 | No.472 平均順位 |
ユーザー | fiord |
提出日時 | 2017-08-14 17:40:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,761 bytes |
コンパイル時間 | 821 ms |
コンパイル使用メモリ | 94,296 KB |
実行使用メモリ | 273,172 KB |
最終ジャッジ日時 | 2024-10-13 09:58:32 |
合計ジャッジ時間 | 8,610 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | OLE | - |
testcase_12 | OLE | - |
testcase_13 | OLE | - |
testcase_14 | MLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <iostream> #include <fstream> #include <cstdio> #include <cmath> #include <cstdlib> #include <cstring> #include <string> #include <vector> #include <utility> #include <complex> #include <set> #include <map> #include <queue> #include <stack> #include <deque> #include <tuple> #include <bitset> #include <algorithm> using namespace std; typedef long double ld; typedef long long ll; typedef vector<int> vint; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef pair<double, double> pdd; typedef complex<ld> compd; #define rep(i,n) for(int i=0;i<n;i++) #define srep(i,a,n) for(int i=a;i<n;i++) #define REP(i,n) for(int i=0;i<=n;i++) #define SREP(i,a,n) for(int i=a;i<=n;i++) #define rrep(i,n) for(int i=n-1;i>=0;i--) #define RREP(i,n) for(int i=n;i>=0;i--) #define all(a) (a).begin(),(a).end() #define mp(a,b) make_pair(a,b) #define mt make_tuple #define fst first #define scn second #define bicnt(x) __buildin__popcount(x) #define debug(x) cout<<"debug: "<<x<<endl #define DEBUG 0 const ll inf = (ll)1e9; const ll mod = (ll)1e9 + 7; const ld eps = 1e-9; const int dx[] = { 0,1,0,-1 }; const int dy[] = { 1,0,-1,0 }; int dp[5010][15010]; int main() { int n, p; cin >> n >> p; REP(i, n) REP(j, p) dp[i][j] = inf; dp[0][0] = 0; rep(i, n) { int a, b, c; cin >> a >> b >> c; REP(j, p) { if (dp[i][j] == inf) continue; dp[i + 1][j] = min(dp[i + 1][j], dp[i][j] + a); if (j + 1 <= p) dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i][j] + b); if (j + 2 <= p) dp[i + 1][j + 2] = min(dp[i + 1][j + 2], dp[i][j] + c); if (j + 3 <= p) dp[i + 1][j + 3] = min(dp[i + 1][j + 3], dp[i][j] + 1); } } REP(i, n) { REP(j, n) cout << dp[i][j] << " "; cout << endl; } printf("%.15Lf\n", ((ld)dp[n][p]) / ((ld)n) + eps); return 0; }