結果
問題 | No.155 生放送とBGM |
ユーザー | Medo Nasser |
提出日時 | 2018-07-03 01:45:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,960 bytes |
コンパイル時間 | 914 ms |
コンパイル使用メモリ | 99,468 KB |
実行使用メモリ | 27,092 KB |
最終ジャッジ日時 | 2024-07-01 01:52:24 |
合計ジャッジ時間 | 5,978 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 839 ms
27,092 KB |
testcase_01 | AC | 747 ms
25,176 KB |
testcase_02 | AC | 700 ms
25,048 KB |
testcase_03 | RE | - |
testcase_04 | AC | 80 ms
16,716 KB |
testcase_05 | AC | 13 ms
15,816 KB |
testcase_06 | AC | 690 ms
24,476 KB |
testcase_07 | AC | 17 ms
20,756 KB |
testcase_08 | AC | 16 ms
19,028 KB |
testcase_09 | AC | 21 ms
21,080 KB |
testcase_10 | AC | 15 ms
18,904 KB |
testcase_11 | AC | 23 ms
23,000 KB |
testcase_12 | AC | 23 ms
21,084 KB |
testcase_13 | AC | 17 ms
19,016 KB |
testcase_14 | AC | 522 ms
25,048 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:53:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 53 | scanf("%d %d",&n,&l); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:58:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 58 | scanf("%d:%d",&x,&y); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <cstdio> #include<list> #include<iomanip> #include<cmath> #include <random> #include<queue> #include <functional> #include<stdio.h> #include<assert.h> #include<stack> #include<sstream> #include <cstdlib> #include<map> #include<algorithm> #include<iostream> #include<set> #include<utility> #include<memory.h> #include<string> #include<vector> #include <unordered_map> #include<numeric> using namespace std; #define ios std::ios_base::sync_with_stdio(false); #define ll long long #define pb push_back #define fi(ss) freopen (ss,"r",stdin) #define fo(ss) freopen (ss,"w",stdout) #define sz(v) ((int)((v).size())) #define all(x) (x).begin(),(x).end() #define REP(i, v) for(int i=0;i<sz(v);i++) #define lp(i,n) for(int i = 0 ; i < n ; ++i) #define hash ___hash #define next ___next #define prev ___prev #define left ___left typedef pair<ll,ll> pii; typedef pair<pii,int> tri; int n,l; const int maxSum = 25005; int s[60]; double fac[60]; double dp1[maxSum + 1][60]; double dp2[maxSum + 1][60]; // set back dp int main() { fac[0] = 1; for (int i = 1 ; i < 60 ; ++i) { fac[i] = 1.0*i * fac[i - 1]; } scanf("%d %d",&n,&l); ll sum = 0; l*=60; int x,y; for (int i = 0 ; i < n ; ++i) { scanf("%d:%d",&x,&y); s[i]=x*60+y; sum+=s[i]; } if (l >= sum) { return printf("%d\n",n); } dp1[0][0] = 1; for (int i = 0 ; i < n ; ++i) { for (int j = i; j >= 0 ; --j) { for (int cur = 0; cur <= maxSum ; ++cur) { dp1[min(maxSum,cur + s[i])][j + 1] += 1.0*dp1[cur][j]; } } } double ways = 0.0; for (int i = 0 ; i < n ; ++i) { for (int j = 0 ; j <= n ; ++j) { for (int cur = 0 ; cur < l ;++cur) { dp2[cur][j] = dp1[cur][j]; if (cur - s[i] >= 0 && j >= 1) { dp2[cur][j] -= dp2[cur - s[i]][j - 1]; } if (j < n && cur + s[i] >= l) { ways += 1.0*(j+1)*(((dp2[cur][j] * 1.0*fac[j] * fac[n - j - 1]))); } } } } printf("%.15lf\n",ways/fac[n]); }