博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1634: [Usaco2007 Jan]Protecting the Flowers 护花
阅读量:6271 次
发布时间:2019-06-22

本文共 2747 字,大约阅读时间需要 9 分钟。

1634: [Usaco2007 Jan]Protecting the Flowers 护花

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 493  Solved: 310
[ ][ ]

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

 题解:呵呵呵,又忘开int64了,结果WA了一次(长点记性吧QAQ)。。。我们可以这样分析此题——如题,假如按照Ti,Di,Ti+1,Di+1的顺序为最优解的话,则此时消耗的花为2TiDi+1,假如将这两个的顺序反过来的话,则消耗的花为2Ti+1Di,由于前者为最优解,所以TiDi+1<Ti+1Di,即(Ti/Di)<(Ti+1/Di+1),则可以用冒泡排序说明顺序中各个牛的(Ti/Di)必然递增(虽是这么分析的,但还是不建议先做商再排序,小心卡精度)。。。That's all...

 

1 var 2    i,k,m,n:longint; 3    j,l:int64; 4    a,b:array[0..200000] of int64; 5 procedure swap(var x,y:int64); 6           var z:int64; 7           begin 8                z:=x;x:=y;y:=z; 9           end;10 procedure sort(l,r:longint);11           var12              i,j:longint;13              x,y:int64;14           begin15                i:=l;j:=r;16                x:=a[(l+r) div 2];17                y:=b[(l+r) div 2];18                repeat19                      while (a[i]*y)<(x*b[i]) do inc(i);20                      while (a[j]*y)>(x*b[j]) do dec(j);21                      if i<=j then22                         begin23                              swap(a[i],a[j]);24                              swap(b[i],b[j]);25                              inc(i);dec(j);26                         end;27                until i>j;28                if l

 

转载于:https://www.cnblogs.com/HansBug/p/4165898.html

你可能感兴趣的文章
遮罩层 弹框 页面滚动
查看>>
机票分享第一篇 机票由何而来
查看>>
【spring 注解】第1篇:Java基础注解学习
查看>>
Linux命令之awk
查看>>
使用 Flask-Docs 自动生成 Api 文档
查看>>
Angular系列学习三:父子组件之间的交互(常见的组件通讯场景)
查看>>
垃圾回收算法|GC标记-清除算法
查看>>
移除注释的完善思路:真的可以用正则实现?
查看>>
我所了解的CSS包含块
查看>>
vue.js多页面开发 webpack.config.js 配置方式
查看>>
C语言中 变量的生命周期、作用域、类型转换
查看>>
android高仿抖音、点餐界面、天气项目、自定义view指示、爬取美女图片等源码...
查看>>
js代码常见技巧总结
查看>>
初识css层叠上下文
查看>>
再看正则表达式
查看>>
JavaScript异步精讲,让你更加明白Js的执行流程!
查看>>
mongoose 的那些基础操作
查看>>
前端每日实战:2# 视频演示如何用纯 CSS 创作一个矩形旋转 loader 特效
查看>>
Learn Forge tutorial - 向导式Forge进阶教程
查看>>
Apache配置文件解读学习笔记
查看>>