摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1203一个简单的0-1背包问题 特别之处就是算的是概率 是乘法的操作 所以把原来的加法用函数代替为相应的操作即可#include<iostream>#include<stdio.h>#include<cstring>using namespace std;int m;double dp[10001];double f(double x,double y){ return 1-(1-x)*(1-y);}void ZeroOnePack(int cost, double wei 阅读全文
posted @ 2011-07-30 16:38 Crazy_yiner 阅读(228) 评论(0) 推荐(0) 编辑