結果
| 問題 | No.155 生放送とBGM |
| コンテスト | |
| ユーザー |
eitaho
|
| 提出日時 | 2015-02-18 01:52:27 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,774 bytes |
| コンパイル時間 | 625 ms |
| コンパイル使用メモリ | 82,820 KB |
| 実行使用メモリ | 10,436 KB |
| 最終ジャッジ日時 | 2024-06-23 20:58:04 |
| 合計ジャッジ時間 | 3,457 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 4 RE * 6 |
ソースコード
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <cmath>
#include <cassert>
#include <climits>
#include <numeric>
#include <functional>
#include <time.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> Pii;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define FOR(i, a, b) for (int i = (int)a; i <= (int)b; i++)
template<class T> void checkmin(T &a, T b) { if (b < a) a = b; }
template<class T> void checkmax(T &a, T b) { if (b > a) a = b; }
const int MaxN = 50;
const int MaxL = 300 * 60;
int N, L;
int Sec[MaxN];
ll dp[MaxN + 1][MaxL + 1];
int sumSec[MaxN];
double fact[MaxN + 1];
void solve() {
sumSec[0] = 0;
rep(i, N) sumSec[i + 1] = Sec[i + 1] + sumSec[i];
fact[0] = 1;
FOR(i, 1, N) fact[i] = fact[i - 1] * i;
double ans = 0;
rep(i, N) {
rep(a, N + 1) rep(b, MaxL + 1) dp[a][b] = 0;
dp[0][0] = 1;
rep(other, N) if (other != i) {
for (int used = other; used >= 0; used--) {
rep(len, sumSec[N] + 1) {
dp[used + 1][len + Sec[other]] += dp[used][len];
}
}
}
double bad = 0;
FOR(used, 1, N) FOR(len, L, MaxL) {
bad += dp[used][len] * fact[used] * fact[N - used - 1] / fact[N];
}
ans += 1 - bad;
}
cout << ans << endl;
}
int main() {
cin >> N >> L;
L *= 60;
rep(i, N) {
string s;
cin >> s;
int sec = ((s[0] - '0') * 10 + s[1] - '0') * 60 + (s[3] - '0') * 10 + s[4] - '0';
Sec[i] = sec;
}
solve();
return 0;
}
eitaho