码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 4882 ZCC Loves Codefires(贪心)

时间:2017-06-24 21:46:52      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:bool   i++   lov   pos   post   ring   can   scan   data   

# include<stdio.h>
# include <algorithm>
# include <string.h>
using namespace std;
struct node
{
    int v;
    int t;
};
struct node a[100010];
bool cmp(node a,node b)
{
    return  a.v *a.t+(a.v+b.v)*b.t<b.v*b.t+(a.v+b.v)*a.t;
}
int main()
{
    int n;
    __int64 sum;
    int i;
    while(~scanf("%d",&n))
    {
        
        for(i=0;i<n;i++)
            scanf("%d",&a[i].v);
        for(i=0;i<n;i++)
            scanf("%d",&a[i].t);
        sort(a,a+n,cmp);
        __int64 sum1=0;
        sum=0;
        for(i=0;i<n;i++)
        {
            sum = (a[i].v+sum);
            sum1+=sum*a[i].t;
        }
        printf("%I64d\n",sum1);
    }
    return 0;
}

hdu 4882 ZCC Loves Codefires(贪心)

标签:bool   i++   lov   pos   post   ring   can   scan   data   

原文地址:http://www.cnblogs.com/yutingliuyl/p/7074487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!