题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4341
明显的分组背包问题,由于排序考虑不周全导致wa数次
分组按照共线的分组!每组只能选择一个!
#include <iostream>
#include <string.h>
#include <algorithm>
#include <stdio.h>
#include <cmath>
using namespace std;
#define eps 1e-10
#define maxn 300
#define zero(a) (fabs(a)<eps)
#define MAX(a,b) (a>b?a:b)
struct point{
double x,y;
int v,c;
}po[maxn],root,temp[maxn];
int n,m;
int now[61000];
double cross(const point &a,const point &b,const point &c){
return (b.x-a.x)*(c.y-a.y) - (b.y-a.y)*(c.x-a.x);
}
double dis(const point &a,const point &b){
return (a.x-b.x)*(a.x-b.y)+(a.y-b.y)*(a.y-b.y);
}
bool cmp(const point &a,const point &b){
double t=cross(root,a,b);
if(zero(t)) return dis(a,root) < dis(b,root);
return t<0;
}
int main(){
int i,j,k,a,b,num,p,q,cas=0,ans;
while(scanf("%d%d",&n,&m)!=EOF){
ans=0;
for(i=1;i<=n;i++)
scanf("%lf%lf%d%d",&po[i].x,&po[i].y,&po[i].v,&po[i].c);
root.x=root.y=0;
memset(now,0,sizeof(now));
sort(po+1,po+n+1,cmp);
a=b=1;
for(i=1;i<=n;i++){
if(zero(cross(root,po[i-1],po[i])))
continue;
else{
p=1;temp[0].v=temp[0].c=0;
for(j=a;j<i;j++){
temp[p].c=temp[p-1].c+po[j].c;
temp[p].v=temp[p-1].v+po[j].v;
p++;
}
for(q=m;q>=0;q--)
for(j=1;j<p;j++)
if(q-temp[j].v>=0)
now[q]=MAX(now[q],now[q-temp[j].v]+temp[j].c);
a=i;
}
}
p=1;temp[0].v=temp[0].c=0;
for(j=a;j<i;j++){
temp[p].c=temp[p-1].c+po[j].c;
temp[p].v=temp[p-1].v+po[j].v;
p++;
}
for(q=m;q>=0;q--)
for(j=1;j<p;j++)
if(q-temp[j].v >=0)
now[q]=MAX(now[q],now[q-temp[j].v]+temp[j].c);
printf("Case %d: %d\n",++cas,now[m]);
}
return 0;
}