結果

問題 No.155 生放送とBGM
ユーザー chocoruskchocorusk
提出日時 2020-01-22 13:22:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,515 ms / 6,000 ms
コード長 1,634 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 111,704 KB
実行使用メモリ 281,344 KB
最終ジャッジ日時 2024-07-07 23:44:40
合計ジャッジ時間 7,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 959 ms
87,168 KB
testcase_01 AC 932 ms
90,880 KB
testcase_02 AC 1,515 ms
281,344 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 43 ms
29,156 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 569 ms
16,624 KB
testcase_07 AC 3 ms
7,764 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
12,144 KB
testcase_10 AC 2 ms
7,892 KB
testcase_11 AC 6 ms
16,092 KB
testcase_12 AC 5 ms
16,288 KB
testcase_13 AC 2 ms
9,944 KB
testcase_14 AC 733 ms
82,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
ll dp[51][51][18001];
int main()
{
	int n, l;
	cin>>n>>l;
	l*=60;
	int s[55];
	int ss=0;
	for(int i=0; i<n; i++){
		int a, b;
		scanf("%d:%d", &a, &b);
		s[i]=a*60+b;
		ss+=s[i];
	}
	if(ss<=l){
		cout<<n<<endl;
		return 0;
	}
	dp[0][0][0]=1;
	ll cnt[55]={};
	for(int i=0; i<n; i++){
		for(int j=i; j>=0; j--){
			for(int k=i; k>=0; k--){
				for(int m=l-1; m>=0; m--){
					if(dp[j][k][m]==0) continue;
					if(k){
						if(m+s[k-1]+s[i]<l){
							dp[j+1][k][m+s[i]]+=dp[j][k][m];
						}else if(m+s[i]<l){
							dp[j+1][k][m+s[i]]+=dp[j][k][m];
							cnt[j+1]+=dp[j][k][m];
						}
					}else{
						if(m+s[i]<l){
							dp[j+1][0][m+s[i]]+=dp[j][0][m];
							dp[j][i+1][m]+=dp[j][0][m];
						}else{
							dp[j][i+1][m]+=dp[j][0][m];
							cnt[j]+=dp[j][0][m];
						}
					}
				}
			}
		}
	}
	ll comb[55][55];
	for(int i=0; i<=n; i++){
		comb[i][0]=comb[i][i]=1;
		for(int j=1; j<i; j++){
			comb[i][j]=comb[i-1][j]+comb[i-1][j-1];
		}
	}
	double ans=0;
	for(int i=0; i<n; i++){
      //cout<<cnt[i]<<endl;
		ans+=(double)cnt[i]/comb[n][i+1];
	}
	printf("%.10lf\n", ans);
	return 0;
}
0