結果
問題 | No.155 生放送とBGM |
ユーザー | tsutaj |
提出日時 | 2018-02-07 20:00:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 756 ms / 6,000 ms |
コード長 | 1,664 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 46,024 KB |
実行使用メモリ | 371,792 KB |
最終ジャッジ日時 | 2024-09-17 21:15:21 |
合計ジャッジ時間 | 4,577 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 543 ms
370,572 KB |
testcase_01 | AC | 535 ms
369,868 KB |
testcase_02 | AC | 386 ms
371,792 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 49 ms
60,036 KB |
testcase_05 | AC | 4 ms
13,384 KB |
testcase_06 | AC | 756 ms
371,152 KB |
testcase_07 | AC | 12 ms
27,860 KB |
testcase_08 | AC | 8 ms
23,292 KB |
testcase_09 | AC | 14 ms
33,004 KB |
testcase_10 | AC | 9 ms
25,960 KB |
testcase_11 | AC | 15 ms
34,972 KB |
testcase_12 | AC | 16 ms
40,188 KB |
testcase_13 | AC | 12 ms
29,320 KB |
testcase_14 | AC | 426 ms
301,840 KB |
ソースコード
#include <cstdio> #include <algorithm> #include <cstring> using namespace std; int N, L, S[60]; long long int dp[2][60][18010]; long long int dp2[60][60][18010]; int main() { scanf("%d%d", &N, &L); L *= 60; int sum = 0; for(int i=0; i<N; i++) { int m, s; scanf("%d:%d", &m, &s); S[i] = 60*m + s; sum += S[i]; } if(sum <= L) { printf("%.12f\n", (double)N); return 0; } dp[0][0][0] = 1; for(int i=0; i<N; i++) { int cur = i%2, nxt = cur^1; for(int j=0; j<=i; j++) { for(int k=0; k<=L; k++) { dp[nxt][j][k] += dp[cur][j][k]; if(k - S[i] >= 0) dp[nxt][j+1][k] += dp[cur][j][k - S[i]]; } } memset(dp[cur], 0, sizeof(dp[cur])); } for(int i=0; i<N; i++) { dp2[i][0][0] = 1; int cur = N%2; for(int j=1; j<N; j++) { for(int k=0; k<=L; k++) { dp2[i][j][k] = dp[cur][j][k]; if(k-S[i] >= 0) dp2[i][j][k] -= dp2[i][j-1][k-S[i]]; } } } double ans = 0.0; for(int i=0; i<N; i++) { for(int l=max(0, L-S[i]); l<L; l++) { for(int j=0; j<N; j++) { long long int pat = dp2[i][j][l]; int X = j, Y = N-j-1; // combination double b = 1; for(int k=1; k<=min(X,Y); k++) { b *= (N - k); b /= k; } b *= N; b = ((X+1) * pat) / b; ans += b; } } } printf("%.12f\n", ans); return 0; }