• [BZOJ1634][Usaco2007 Jan]Protecting the Flowers 护花 贪心


    1634: [Usaco2007 Jan]Protecting the Flowers 护花

    Time Limit: 5 Sec  Memory Limit: 64 MB
    Submit: 885  Solved: 575
    [Submit][Status][Discuss]

    Description

    Farmer John went to cut some wood and left N (2 <= N <= 100,000) cows eating the grass, as usual. When he returned, he found to his horror that the cows were in his garden eating his beautiful flowers. Wanting to minimize the subsequent damage, FJ decided to take immediate action and transport the cows back to their barn. Each cow i is at a location that is Ti minutes (1 <= Ti <= 2,000,000) away from the barn. Furthermore, while waiting for transport, she destroys Di (1 <= Di <= 100) flowers per minute. No matter how hard he tries,FJ can only transport one cow at a time back to the barn. Moving cow i to the barn requires 2*Ti minutes (Ti to get there and Ti to return). Write a program to determine the order in which FJ should pick up the cows so that the total number of flowers destroyed is minimized.

       约翰留下他的N只奶牛上山采木.他离开的时候,她们像往常一样悠闲地在草场里吃草.可是,当他回来的时候,他看到了一幕惨剧:牛们正躲在他的花园里,啃食着他心爱的美丽花朵!为了使接下来花朵的损失最小,约翰赶紧采取行动,把牛们送回牛棚. 牛们从1到N编号.第i只牛所在的位置距离牛棚Ti(1≤Ti《2000000)分钟的路程,而在约翰开始送她回牛棚之前,她每分钟会啃食Di(1≤Di≤100)朵鲜花.无论多么努力,约翰一次只能送一只牛回棚.而运送第第i只牛事实上需要2Ti分钟,因为来回都需要时间.    写一个程序来决定约翰运送奶牛的顺序,使最终被吞食的花朵数量最小.

    Input

    * Line 1: A single integer

    N * Lines 2..N+1: Each line contains two space-separated integers, Ti and Di, that describe a single cow's characteristics

        第1行输入N,之后N行每行输入两个整数Ti和Di.

    Output

    * Line 1: A single integer that is the minimum number of destroyed flowers

        一个整数,表示最小数量的花朵被吞食.

    Sample Input

    6
    3 1
    2 5
    2 3
    3 2
    4 1
    1 6

    Sample Output

    86

    HINT

        约翰用6,2,3,4,1,5的顺序来运送他的奶牛.

    Source

    Silver

    考虑相邻的两只牛交换的条件是d[b]*t[a]<d[a]*t[b]。

    按条件排序即可。

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<cstdlib>
     5 #include<cmath>
     6 #include<algorithm>
     7 #define LL long long
     8 using namespace std;
     9 LL n;
    10 struct data{
    11     LL t,d;
    12     bool operator <(const data tmp)const {
    13         return tmp.d*t<d*tmp.t;
    14     }
    15 }a[100005];
    16 int main(){
    17     scanf("%lld",&n);
    18     for(int i=1;i<=n;i++) scanf("%lld%lld",&a[i].t,&a[i].d);
    19     sort(a+1,a+n+1);
    20     LL sum=0,tim=0;
    21     for(int i=1;i<=n;i++){
    22         sum+=a[i].d*tim;
    23         tim+=a[i].t*2;
    24     }
    25     printf("%lld
    ",sum);
    26     return 0;
    27 }
    View Code
    O(∩_∩)O~ (*^__^*) 嘻嘻…… O(∩_∩)O哈哈~
  • 相关阅读:
    站内信设计
    python 发送邮件例子
    mysql 索引相关知识
    一、mysql分表简单介绍
    redis 学习笔记三(队列功能)
    redis 学习笔记二 (简单动态字符串)
    redis 学习笔记一
    docker部署asp.net core
    win10安装docker
    页面格式化后台的传过来的
  • 原文地址:https://www.cnblogs.com/wls001/p/7800861.html
Copyright © 2020-2023  润新知