• BZOJ1634: [Usaco2007 Jan]Protecting the Flowers 护花


    1634: [Usaco2007 Jan]Protecting the Flowers 护花

    Time Limit: 5 Sec  Memory Limit: 64 MB
    Submit: 448  Solved: 276
    [Submit][Status]

    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行每行输入两个整数TiDi

    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

        约翰用623415的顺序来运送他的奶牛.

    Source

    题解:
    同国王游戏。
    代码:
     1 #include<cstdio>
     2 #include<cstdlib>
     3 #include<cmath>
     4 #include<cstring>
     5 #include<algorithm>
     6 #include<iostream>
     7 #include<vector>
     8 #include<map>
     9 #include<set>
    10 #include<queue>
    11 #include<string>
    12 #define inf 1000000000
    13 #define maxn 100000+100
    14 #define maxm 500+100
    15 #define eps 1e-10
    16 #define ll long long
    17 #define pa pair<int,int>
    18 using namespace std;
    19 inline int read()
    20 {
    21     int x=0,f=1;char ch=getchar();
    22     while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    23     while(ch>='0'&&ch<='9'){x=10*x+ch-'0';ch=getchar();}
    24     return x*f;
    25 }
    26 struct rec{int x,y;}a[maxn];
    27 int n;
    28 inline bool cmp(rec a,rec b)
    29 {
    30     return a.x*b.y<a.y*b.x;
    31 }
    32 int main()
    33 {
    34     freopen("input.txt","r",stdin);
    35     freopen("output.txt","w",stdout);
    36     n=read();
    37     ll sum=0;
    38     for(int i=1;i<=n;i++)a[i].x=read(),a[i].y=read(),sum+=a[i].y;    
    39     sort(a+1,a+n+1,cmp);
    40     ll ans=0;
    41     for(int i=1;i<=n;i++)
    42      {
    43          sum-=a[i].y;
    44          ans+=sum*2*a[i].x;
    45      }
    46     printf("%lld
    ",ans); 
    47     return 0;
    48 }
    View Code
  • 相关阅读:
    nodejs项目,vue开发环境,可以配置,域名访问模式嘛,这样线上项目就可以不用打包来访问了
    windows 开机自动运行nodejs项目 pm2方法实现
    vue style中变量样式
    配置域名可以访问vue编译后都项目,不用打包通过域名也可访问
    putty 终端 ctrl + c失效
    php 往数组前,后添加元素
    js 二维数组排序
    vue中vfor写在template上,加key提示错误
    mongodb 终端自己常用命令
    vue项目配置 域名和host.
  • 原文地址:https://www.cnblogs.com/zyfzyf/p/3945491.html
Copyright © 2020-2023  润新知