洛谷4266 [USACO18FEB]Rest Stops

标签:贪心

题目

题目传送门

题意简述

Farmer John和Bessie在爬山,高度为 L L L,Farmer John需要 R F R_F RF的时间爬一米,Bessie只需要 R B R_B RB的时间爬一米,规定 R B &lt; R F R_B &lt; R_F RB<RF(严格小于)。同时有 N N N个休息站,Bessie可以决定在每个休息站休息多长时间(或者不休息),给出所有休息站的位置 X i X_i Xi和权值 C i C_i Ci,在一个休息站待 T T T单位时间,答案可以获得 C i × T C_i\times T Ci×T的贡献值。请你在保证Bessie领先于Farmer John的情况下,最大化答案。

题解

中文

贪心的思想:将所有休息站的权值按照 C i C_i Ci的从大到小排序,之后尽量选择在 C i C_i Ci最大的休息站休息,然后继续在下一个区域内具有最大 C j C_j Cj的休息站休息。

贪心的证明:如果没有在当前区域内 C i C_i Ci最大的休息站休息,那么就选择其它休息站 k k k休息,那么 C k C_k Ck一定小于 C i C_i Ci,即 C k × T &lt; C i × T C_k\times T &lt; C_i\times T Ck×T<Ci×T,那么最终答案一定不是最优解,所以贪心是正确的

English

We can simply perform a greedy algorithm: stop at a rest stop which has the Maximal C i C_i Ci in this area you can arrived, and stay at this rest stop as long as possible. After that, find the next rest stop which also has the Maximal C j C_j Cj in next area. It’s supposed P j &gt; P i P_j &gt; P_i Pj>Pi. And also stay at rest stop J J J as long as possible, until Farmer John is coming.

It’s easy to prove the greedy algorithm: If it didn’t stay at the maximal C i C_i Ci rest stop, then changed to another rest stop C k C_k Ck, that means C k C_k Ck must be less than C i C_i Ci, so that C k × T &lt; C i × T C_k\times T &lt; C_i\times T Ck×T<Ci×T. So that can’t be the best answer, so the greedy algorithm is correct.

Code

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<algorithm>
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define dep(i,a,b) for(int i=a;i>=b;i--)
#define ll long long
#define mem(x,num) memset(x,num,sizeof x)
#define reg(x) for(int i=last[x];i;i=e[i].next)
using namespace std;
inline ll read(){
    ll f=1,x=0;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
//******head by yjjr******
const int maxn=1e6+6;
ll l,n,f,b;
struct node{ll x,c;}a[maxn];
inline bool cmp(node a,node b){return a.c>b.c;}
int main(){
    l=read(),n=read(),f=read(),b=read();
    rep(i,1,n)a[i].x=read(),a[i].c=read();
    ll t=f-b;
    sort(a+1,a+1+n,cmp);
    ll ans=a[1].c*a[1].x*t,last=1;
    rep(i,2,n)
        if(a[i].x>a[last].x)ans+=a[i].c*((a[i].x-a[last].x)*t),last=i;
    cout<<ans<<endl;
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值