結果

問題 No.155 生放送とBGM
ユーザー yosupotyosupot
提出日時 2015-02-18 00:09:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 196 ms / 6,000 ms
コード長 1,810 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 69,620 KB
実行使用メモリ 20,804 KB
最終ジャッジ日時 2024-06-23 20:48:54
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
20,644 KB
testcase_01 AC 187 ms
20,796 KB
testcase_02 AC 195 ms
20,664 KB
testcase_03 AC 196 ms
20,804 KB
testcase_04 AC 69 ms
20,800 KB
testcase_05 AC 11 ms
19,468 KB
testcase_06 AC 179 ms
19,380 KB
testcase_07 AC 18 ms
20,184 KB
testcase_08 AC 14 ms
19,648 KB
testcase_09 AC 24 ms
20,752 KB
testcase_10 AC 18 ms
20,444 KB
testcase_11 AC 26 ms
20,624 KB
testcase_12 AC 27 ms
20,392 KB
testcase_13 AC 19 ms
20,560 KB
testcase_14 AC 158 ms
20,652 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘double solve()’:
main.cpp:30:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |         scanf("%d:%d", &x, &y);
      |         ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

//#define NDEBUG
//戻すDPを知らず。
#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <map>
#include <queue>
#include <set>
#include <tuple>
#include <cassert>
#include <numeric>

using namespace std;
typedef long long ll;


double fact(int n) {
    if (n <= 1) return 1;
    return fact(n-1)*n;
}
int d[55];
double dp[55][20000] = {};
double dp2[55][20000] = {};
double solve() {
    int n, l;
    cin >> n >> l;
    for (int i = 0; i < n; i++) {
        int x, y;
        scanf("%d:%d", &x, &y);
        d[i] = x*60+y;
    }
    dp[0][0] = 1;
    for (int i = 0; i < n; i++) {
        for (int u = 54; u >= 1; u--) {
            for (int k = 19000; k >= d[i]; k--) {
                dp[u][k] += dp[u-1][k-d[i]];
            }
        }
    }
    double res = 0;
    for (int i = 0; i < n; i++) {
        memset(dp2, 0, sizeof(dp));
        dp2[0][0] = 1;
        for (int j = 1; j < n; j++) {
            for (int k = 0; k < d[i]; k++) {
                dp2[j][k] = dp[j][k];
            }
            for (int k = d[i]; k < 19000; k++) {
                dp2[j][k] = dp[j][k] - dp2[j-1][k-d[i]];
            }
        }
/*        memset(dp, 0, sizeof(dp));
        dp[0][0] = 1;
        for (int j = 0; j < n; j++) {
            if (i == j) continue;
            for (int u = 54; u >= 1; u--) {
                for (int k = 19000; k >= d[j]; k--) {
                    dp[u][k] += dp[u-1][k-d[j]];
                }
            }
        }*/
        for (int u = 0; u < 55; u++) {
            double p = 0;
            for (int k = 0; k < 60*l; k++) {
                p += dp2[u][k];
            }
            p *= fact(u)*fact(n-(u+1));
            res += p;
        }
    }
    return res/fact(n);
}


int main() {
    printf("%.20f\n", solve());
    return 0;
}
0