結果
| 問題 | No.155 生放送とBGM |
| コンテスト | |
| ユーザー |
eitaho
|
| 提出日時 | 2015-02-18 20:42:40 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,761 bytes |
| コンパイル時間 | 626 ms |
| コンパイル使用メモリ | 81,816 KB |
| 実行使用メモリ | 182,428 KB |
| 最終ジャッジ日時 | 2024-06-23 21:07:23 |
| 合計ジャッジ時間 | 22,458 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 4 TLE * 1 -- * 8 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:68:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
68 | scanf("%d:%d", &m, &s);
| ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#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 * MaxN + 1];
int sumSec[MaxN];
double fact[MaxN + 1];
void solve() {
rep(i, N) sumSec[i] = Sec[i] + (i > 0 ? sumSec[i - 1] : 0);
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, sumSec[N - 1] + 1) dp[a][b] = 0;
dp[0][0] = 1;
rep(other, N) if (other != i) {
for (int used = other; used >= 0; used--) {
for (int len = 0; len + Sec[other] <= sumSec[other]; len++) {
dp[used + 1][len + Sec[other]] += dp[used][len];
}
}
}
double bad = 0;
FOR(used, 1, N - 1) FOR(len, L, sumSec[N - 1]) {
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) {
int m, s;
scanf("%d:%d", &m, &s);
Sec[i] = m * 60 + s;
}
solve();
return 0;
}
eitaho