結果

問題 No.155 生放送とBGM
ユーザー 沙耶花沙耶花
提出日時 2021-11-02 21:18:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,606 ms / 6,000 ms
コード長 1,772 bytes
コンパイル時間 4,607 ms
コンパイル使用メモリ 268,820 KB
実行使用メモリ 384,908 KB
最終ジャッジ日時 2024-10-12 03:21:05
合計ジャッジ時間 16,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,309 ms
384,908 KB
testcase_01 AC 1,210 ms
384,768 KB
testcase_02 AC 2,606 ms
384,896 KB
testcase_03 AC 2,227 ms
384,896 KB
testcase_04 AC 61 ms
70,780 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 461 ms
384,768 KB
testcase_07 AC 15 ms
23,828 KB
testcase_08 AC 8 ms
14,172 KB
testcase_09 AC 23 ms
36,536 KB
testcase_10 AC 8 ms
15,944 KB
testcase_11 AC 31 ms
43,780 KB
testcase_12 AC 35 ms
50,348 KB
testcase_13 AC 11 ms
23,888 KB
testcase_14 AC 1,016 ms
322,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001
int N,L;
//long long dp[51][18002][51];
long long rdp[51][18002][51];
/*
void get(vector<int> t){
	dp[0][0][0] = 1LL;
	
	rep(i,N){
		rep(j,L){
			rep(k,N+1){
				if(dp[i][j][k]==0)continue;
				dp[i+1][j][k] += dp[i][j][k];
				if(j+t[i]<L){
					dp[i+1][j+t[i]][k+1] += dp[i][j][k];
				}
			}
		}
	}

}*/

void rget(vector<int> t){
	rdp[0][0][0] = 1LL;
	
	rep(i,N){
		rep(j,L){
			rep(k,N+1){
				if(rdp[i][j][k]==0)continue;
				rdp[i+1][j][k] += rdp[i][j][k];
				if(j+t[i]<L){
					rdp[i+1][j+t[i]][k+1] += rdp[i][j][k];
				}
			}
		}
	}

}

int main(){	
	
	
	cin>>N>>L;
	
	L *= 60;
	
	vector<int> t(N);
	long long sum = 0;
	rep(i,N){
		int m,s;
		scanf("%d:%d",&m,&s);
		t[i] = m*60+s;
		sum += t[i];
	}
	
	vector<double> f(N+5,1.0);
	for(int i=1;i<f.size();i++)f[i] = f[i-1] * i;
	
	double ans = 0.0;
	
	//get(t);
	reverse(t.begin(),t.end());
	rget(t);
	reverse(t.begin(),t.end());
	
	vector dp(L,vector<long long>(N+1,0));
	dp[0][0] = 1;
	
	rep(i,N+1){
		rep(j,L-1){
			rep(k,N+1){
				rdp[i][j+1][k] += rdp[i][j][k];
			}
		}
	}
	
	rep(i,N){
		
		rep(j,L){
			rep(k,N+1){
				if(dp[j][k]==0)continue;
				rep(kk,N+1){
					double temp = dp[j][k] * rdp[N-1-i][L-1-j][kk];
					temp *= f[k+kk];
					temp *= f[(N-1)-k-kk];
					ans += temp;
				}
			}
		}
		
		vector ndp(L,vector<long long>(N+1,0));
		rep(j,L){
			rep(k,N+1){
				if(dp[j][k]==0)continue;
				ndp[j][k] += dp[j][k];
				if(j+t[i]<L){
					ndp[j+t[i]][k+1] += dp[j][k];
				}
			}
		}
		swap(dp,ndp);
		
	}
	
	rep(i,N)ans /= i+1;
	
	cout<<fixed<<setprecision(10)<<ans<<endl;
	
	
	return 0;
	
}
0