結果
| 問題 | No.155 生放送とBGM |
| コンテスト | |
| ユーザー |
👑 kmjp
|
| 提出日時 | 2015-02-18 00:03:02 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,312 bytes |
| コンパイル時間 | 1,256 ms |
| コンパイル使用メモリ | 160,468 KB |
| 実行使用メモリ | 112,640 KB |
| 最終ジャッジ日時 | 2024-06-23 20:41:12 |
| 合計ジャッジ時間 | 3,248 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 10 |
コンパイルメッセージ
main.cpp: In function ‘void solve()’:
main.cpp:27:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
27 | scanf("%d%d",&N,&L);
| ~~~~~^~~~~~~~~~~~~~
main.cpp:30:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
30 | scanf("%d:%d",&x,&y);
| ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------
int N,L;
int S[100];
int sum;
double fact[100];
double dp[53][7500][53];
void solve() {
int i,j,k,l,r,x,y; string s;
fact[0]=fact[1]=1;
for(i=2;i<=80;i++) fact[i]=fact[i-1]*i;
scanf("%d%d",&N,&L);
L*=60;
FOR(i,N) {
scanf("%d:%d",&x,&y);
S[i]=x*60+y;
sum+=S[i];
}
if(L>=sum) return _P("%d\n",N);
dp[0][0][0]=1;
FOR(i,N) {
FOR(x,i+1) {
FOR(y,7401) if(dp[i][y][x]) {
dp[i+1][min(7401,y+S[i])][x+1] += dp[i][y][x];
dp[i+1][y][x] += dp[i][y][x];
}
}
}
double ret=0;
FOR(i,N) {
for(y=S[i];y<=L+S[i]-1;y++) {
for(x=1;x<=N;x++) if(dp[N][y][x]) {
ret += dp[N][y-S[i]][x-1] * fact[x-1] * fact[N-x];
}
}
}
ret /= fact[N];
_P("%.12lf\n",ret);
}
int main(int argc,char** argv){
string s;int i;
if(argc==1) ios::sync_with_stdio(false);
FOR(i,argc-1) s+=argv[i+1],s+='\n';
FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
solve(); return 0;
}
kmjp