记录编号 421689 评测结果 AAAAAATTTT
题目名称 [NOI 2007]货币兑换 最终得分 60
用户昵称 GravatarShirry 是否通过 未通过
代码语言 C++ 运行时间 4.002 s
提交时间 2017-07-07 20:42:01 内存使用 1.68 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn=100010;
int n,s;
double ans=0.0,f[maxn]={0},a[maxn],b[maxn],r[maxn];
int work(){
	freopen("cash.in","r",stdin);
	freopen("cash.out","w",stdout);
	scanf("%d%d",&n,&s);
	for(int i=1;i<=n;i++)cin>>a[i]>>b[i]>>r[i];
	f[1]=s*r[1]/(a[1]*r[1]+b[1]);
	ans=s;
	for(int i=2;i<=n;i++){
		for(int j=1;j<=i-1;j++){
			double x=f[j]*a[i]+f[j]/r[j]*b[i];
			if(x>ans)ans=x;
		}
		f[i]=ans*r[i]/(a[i]*r[i]+b[i]);
	}
	printf("%.3f",ans);
	return 0;
}
int sh=work();
int main(){
	return 0;
}