首页 > 代码库 > hdoj 4310 贪心
hdoj 4310 贪心
不知为毛,过不了
我的代码:
#include<stdio.h>
int main()
{
int n,a[30],b[30],temp,i,j,s1,s2;
double c[30];
while(scanf("%d",&n)!=EOF)
{
s1=0;
s2=0;
for(i=0;i<n;i++)
{
scanf("%d%d",&a[i],&b[i]);
s1+=a[i];
c[i]=a[i]/b[i];
}
for(i=0;i<n;i++)
{
for(j=i+1;j<n;j++)
{
if(c[i]<c[j])
{
temp=c[i];
c[i]=c[j];
c[j]=temp;
temp=b[i];
b[i]=b[j];
b[j]=temp;
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
}
for(i=0;i<n;i++)
{
s2+=s1*b[i];
s1-=a[i];
}
printf("%d\n",s2);
}
}
Ac的代码:
- #include <stdio.h>
- #include <algorithm>
- using namespace std;
- struct Node
- {
- int dps;
- int hp;
- }a[30];
- int cmp(Node x,Node y)
- {
- return x.hp*y.dps<y.hp*x.dps;//按比率排,避免小数,所以讲式子进行转换
- }
- int main()
- {
- int t,i;
- int sum,ans;
- while(~scanf("%d",&t))
- {
- sum = ans = 0;
- for(i = 0;i<t;i++)
- {
- scanf("%d%d",&a[i].dps,&a[i].hp);
- sum+=a[i].dps;
- }
- sort(a,a+t,cmp);
- for(i = 0;i<t;i++)
- {
- ans+=sum*a[i].hp;
- sum-=a[i].dps;
- }
- printf("%d\n",ans);
- }
- return 0;
- }
- 有毛区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。