标签:01背包
1.题目描述:点击打开链接
2.解题思路:本题利用01背包解决。不过稍微运用了一下逆向思维。如果按照经典的思路,应该是概率作为容量,钱数作为价值,但是由于概率是浮点数,不能直接当做下标来使用,因此不妨换一个角度来考虑:概率作为价值,钱数作为容量。我们把所有的概率都转化为不被抓的概率,那么,本题实际上是求解不被抓的概率刚刚大于P的时候,最大的容量是多少。这样就可以用经典的01背包求解了。
3.代码:
//#pragma comment(linker, "/STACK:1024000000,1024000000") #include<iostream> #include<algorithm> #include<cassert> #include<string> #include<sstream> #include<set> #include<bitset> #include<vector> #include<stack> #include<map> #include<queue> #include<deque> #include<cstdlib> #include<cstdio> #include<cstring> #include<cmath> #include<ctime> #include<cctype> #include<functional> using namespace std; #define me(s) memset(s,0,sizeof(s)) typedef long long ll; typedef unsigned int uint; typedef unsigned long long ull; typedef pair <int, int> P; #define rep(i,n) for(int i=0;i<(n);i++) const int N=10000+5; const double eps=1e-8; int w[N]; double p[N],not_catch[N]; int main() { int T,n; double P; scanf("%d",&T); while(T--) { scanf("%lf%d",&P,&n); me(not_catch); P=1-P; int sum=0; not_catch[0]=1.0; for(int i=0;i<n;i++) { scanf("%d%lf",&w[i],&p[i]); sum+=w[i]; p[i]=1.0-p[i]; } for(int i=0;i<n;i++) for(int j=sum;j>=w[i];j--) not_catch[j]=max(not_catch[j],not_catch[j-w[i]]*p[i]); for(int i=sum;i>=0;i--) if(not_catch[i]-P>eps) { printf("%d\n",i);break; } } }
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:01背包
原文地址:http://blog.csdn.net/u014800748/article/details/47789855