1634: [Usaco2007 Jan]Protecting the Flowers 护花
1634: [Usaco2007 Jan]Protecting the Flowers 护花
Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 493 Solved: 310
[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.
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
3 1
2 5
2 3
3 2
4 1
1 6
Sample Output
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 var 12 i,j:longint; 13 x,y:int64; 14 begin 15 i:=l;j:=r; 16 x:=a[(l+r) div 2]; 17 y:=b[(l+r) div 2]; 18 repeat 19 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 then 22 begin 23 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<j then sort(l,j); 29 if i<r then sort(i,r); 30 end; 31 begin 32 readln(n); 33 for i:=1 to n do 34 begin 35 readln(a[i],b[i]); 36 a[i]:=a[i]*2; 37 end; 38 sort(1,n); 39 j:=0;l:=0; 40 for i:=1 to n-1 do 41 begin 42 j:=j+a[i]; 43 l:=l+j*b[i+1]; 44 end; 45 writeln(l); 46 end.
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· winform 绘制太阳,地球,月球 运作规律
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 上周热点回顾(3.3-3.9)