結果

問題 No.472 平均順位
ユーザー あっちむいてホイ!あっちむいてホイ!
提出日時 2021-08-23 14:51:42
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 984 bytes
コンパイル時間 3,692 ms
コンパイル使用メモリ 144,476 KB
実行使用メモリ 296,832 KB
最終ジャッジ日時 2024-11-07 17:16:28
合計ジャッジ時間 6,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 13 ms
11,264 KB
testcase_10 AC 10 ms
8,576 KB
testcase_11 AC 38 ms
28,288 KB
testcase_12 AC 29 ms
20,864 KB
testcase_13 AC 109 ms
68,736 KB
testcase_14 AC 329 ms
244,224 KB
testcase_15 AC 107 ms
68,864 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 24 ms
20,608 KB
testcase_19 AC 55 ms
34,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <functional>
#include <iomanip>
#include <bitset>
#include <map>
#include <set>
#include <queue>
using namespace std;


int main(int argc, char const *argv[])
{
  int N,P ; cin >> N >> P;
  vector<int> A(N),B(N),C(N);
  for(int i=0;i<N;++i)
  {
    cin >> A[i] >> B[i] >> C[i];
  }
  const int INF = 1e9;
  vector<vector<int>> dp(N+1,vector<int>(P+1,INF));//
  auto chmin = [](int &x, int y) -> int
  {
    if(y < x)x = y;
    return x;
  };
  dp[0][0] = 0;
  for(int i=0;i<N;++i)
  {
    for(int j=0;j<=P;++j)
    {
      if(dp[i][j] != INF)
      {
        chmin(dp[i+1][j],dp[i][j]+A[i]);
        if(j+1 <= P)chmin(dp[i+1][j+1], dp[i][j]+B[i]);
        if(j+2 <= P)chmin(dp[i+1][j+2], dp[i][j]+C[i]);
        if(j+3 <= P)chmin(dp[i+1][j+3],dp[i][j]+1);
      }
    }
  }
  std::cout << std::fixed << std::setprecision(15) << (double)dp[N][P]/N << std::endl;
}
0