結果
問題 | No.472 平均順位 |
ユーザー | _3_72_ |
提出日時 | 2019-08-28 20:28:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,530 bytes |
コンパイル時間 | 1,674 ms |
コンパイル使用メモリ | 168,328 KB |
実行使用メモリ | 589,696 KB |
最終ジャッジ日時 | 2024-04-28 20:50:33 |
合計ジャッジ時間 | 5,150 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 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 7 ms
8,704 KB |
testcase_09 | AC | 22 ms
23,424 KB |
testcase_10 | AC | 17 ms
18,304 KB |
testcase_11 | AC | 61 ms
60,800 KB |
testcase_12 | AC | 45 ms
45,696 KB |
testcase_13 | AC | 159 ms
153,984 KB |
testcase_14 | MLE | - |
testcase_15 | AC | 165 ms
153,856 KB |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | AC | 45 ms
42,496 KB |
testcase_19 | AC | 88 ms
84,608 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; typedef vector<ll> vll; #define int ll #define fi first #define se second #define SORT(a) sort(a.begin(),a.end()) #define rep(i,n) for(int i = 0;i < (n) ; i++) #define REP(i,n) for(int i = 0;i < (n) ; i++) #define MP(a,b) make_pair(a,b) #define pb(a) push_back(a) #define INF LLONG_MAX/2 #define all(x) (x).begin(),(x).end() #define debug(x) cerr<<#x<<": "<<x<<endl #define debug_vec(v) cerr<<#v<<":";rep(i,v.size())cerr<<" "<<v[i];cerr<<endl //---------------------------------------------------------------- // int MOD = 998244353; int MOD = 1000000007; ll dp[5001][15001] = {0}; //---------------------------------------------------------------- signed main(){ ll n,p; cin >> n >> p; vll a(n),b(n),c(n); rep(i,n) cin >> a[i] >> b[i] >> c[i]; for(int i = 0;i < n;i++){ for(int j = 0;j <= p;j++){ dp[i+1][j] = dp[i][j] + a[i]; if(j >= 1) dp[i+1][j] = min(dp[i+1][j],dp[i][j-1]+b[i]); if(j >= 2) dp[i+1][j] = min(dp[i+1][j],dp[i][j-2]+c[i]); if(j >= 3) dp[i+1][j] = min(dp[i+1][j],dp[i][j-3]+1); } } // cout << dp[n][p]*1.0/n << endl; printf("%0.10lf\n",dp[n][p]*1.0/n); return 0; } //---------------------------------------------------------------- // g++ -std=c++14 code1.cpp // rm -r -f test;oj dl https://code-festival-2018-quala.contest.atcoder.jp/tasks/code_festival_2018_quala_c // rm -r -f test;oj dl https://dp.contest.atcoder.jp/tasks/dp_a // rm -r -f test;oj dl https://abc054.contest.atcoder.jp/tasks/abc054_d