結果

問題 No.472 平均順位
ユーザー nenuonnenuon
提出日時 2018-03-02 18:19:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,121 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 94,240 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-02 11:40:00
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,504 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 3 ms
4,376 KB
testcase_09 AC 7 ms
4,380 KB
testcase_10 AC 6 ms
4,380 KB
testcase_11 AC 18 ms
4,380 KB
testcase_12 AC 13 ms
4,376 KB
testcase_13 AC 44 ms
4,376 KB
testcase_14 AC 154 ms
4,380 KB
testcase_15 AC 44 ms
4,376 KB
testcase_16 AC 177 ms
4,376 KB
testcase_17 AC 187 ms
4,376 KB
testcase_18 AC 13 ms
4,376 KB
testcase_19 AC 22 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
#include <cstring>
#include <deque>
#include <iomanip>
#include <limits>
using namespace std;
#define FOR(I,A,B) for(int I = (A); I < (B); ++I)
#define CLR(mat) memset(mat, 0, sizeof(mat))
typedef long long ll;
int dp[15005]; // := i+1日めで正解数がjの時の順位の和の最小
int main()
{
  ios::sync_with_stdio(false);
  cin.tie(0);
  int N, P; cin >> N >> P;
  FOR(j,0,15005) dp[j] = 2e9;
  dp[0] = 0;
  int a[N], b[N], c[N];
  FOR(i,0,N) cin >> a[i] >> b[i] >> c[i];
  FOR(i,0,N) {
    for(int j = P; j >= 0; j--) {
      // 0問
      dp[j] = dp[j] + a[i]; 
      // 1問
      if(j-1>=0) dp[j] = min(dp[j], dp[j-1] + b[i]);
      // 2問
      if(j-2>=0) dp[j] = min(dp[j], dp[j-2] + c[i]);
      // 3問
      if(j-3>=0) dp[j] = min(dp[j], dp[j-3] + 1);
      
    }

  }
  cout << fixed << setprecision(17) << (double)dp[P] / N << endl;
  return 0;
}
0