結果
問題 | No.155 生放送とBGM |
ユーザー | Yang33 |
提出日時 | 2018-05-07 23:08:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,030 bytes |
コンパイル時間 | 1,971 ms |
コンパイル使用メモリ | 176,404 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 02:22:46 |
合計ジャッジ時間 | 2,278 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using VS = vector<string>; using LL = long long; using VI = vector<int>; using VVI = vector<VI>; using PII = pair<int, int>; using PLL = pair<LL, LL>; using VL = vector<LL>; using VVL = vector<VL>; #define ALL(a) begin((a)),end((a)) #define RALL(a) (a).rbegin(), (a).rend() #define SZ(a) int((a).size()) #define SORT(c) sort(ALL((c))) #define RSORT(c) sort(RALL((c))) #define UNIQ(c) (c).erase(unique(ALL((c))), end((c))) #define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++) #define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--) #define debug(x) cerr << #x << ": " << x << endl const int INF = 1e9; const LL LINF = 1e16; const LL MOD = 1000000007; const double PI = acos(-1.0); int DX[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int DY[8] = { 1, -1, 0, 0, 1, -1, 1, -1 }; /* ----- 2018/05/05 Problem: yukicoder 155 / Link: http://yukicoder.me/problems/no/155 ----- */ /* ------問題------ ユキさんは生放送で配信する際に,BGMとしてクララーリスというグループの曲を流しています. ユキさんのミュージックプレイヤーには,クララーリスの曲が N 曲登録されており,その k 曲目の長さは Sk です. また,ユキさんが生放送で配信する時間は L 分です. ミュージックプレイヤーはランダム再生機能があり,まず,登録されている曲をランダムに並べ替えて,順番に再生されます. また,全ての曲が再生された後は,再びランダムに並び替えて,順番に再生されます. ユキさんの放送中に 1 秒でも流れる曲は何曲になるかという期待値を求めるプログラムを書いて下さい. ランダムに並べ替える際は,N! パターンの並び替え方が等確率で起こるものとし,毎回独立に並び替えるとして下さい. また,ユキさんは生放送が始まると同時に再生し始めます. -----問題ここまで----- */ /* -----解説等----- ----解説ここまで---- */ int main() { cin.tie(0); ios_base::sync_with_stdio(false); int N, L; cin >> N >> L; L *= 60; VI a(N); FOR(i, 0, N) { int m, s; scanf("%d:%d", &m, &s); a[i] = 60 * m + s; } int sum = accumulate(ALL(a), 0); if (sum <= L) { cout << N << endl; return 0; } VVL dp(N + 1, VL(L +4000, 0)); dp[0][0] = 1; FOR(i, 0, N) { FORR(j, N - 1, 0 - 1) { FOR(k, a[i], L + 1) { dp[j + 1][k] += dp[j][k - a[i]]; } } } vector<double>fact(51); fact[0] = fact[1] = 1; FOR(i, 1, 50) { fact[i + 1] = fact[i] * (i + 1); } double ans = 0; FOR(i, 0, N) { VVL diffdp = dp; FOR(j, 0, N) { FOR(k, 0, L) { diffdp[j + 1][k + a[i]] -= diffdp[j][k]; } } FOR(j, 0, N) { FOR(k, max(0, L - a[i]), L) { ans += 1.*(j + 1)*diffdp[j][k] * fact[j] * fact[N - j - 1]; } } } ans /= fact[N]; cout << fixed << setprecision(10) << ans << "\n"; return 0; }