切长条(贪心)

链接:https://ac.nowcoder.com/acm/problem/25136
来源:牛客网

题目描述
给定如图所示的若干个长条。你可以在某一行的任意两个数之间作一条竖线,从而把这个长条切开,并可能切开其他长条。问至少要切几刀才能把每一根长条都切开。样例如图需要切两刀。

注意:输入文件每行的第一个数表示开始的位置,而第二个数表示长度。
输入描述:
Line 1: A single integer, N(2 <= N <= 32000)
Lines 2…N+1: Each line contains two space-separated positive integers that describe a leash. The first is the location of the leash’s stake; the second is the length of the leash.(1 <= length <= 1e7)
输出描述:
Line 1: A single integer that is the minimum number of cuts so that each leash is cut at least once.
示例1
输入

7
2 4
4 7
3 3
5 3
9 4
1 5
7 3
输出

2

题意:略。

题记:略。

#include<bits/stdc++.h>

using namespace std;
const int N=32010;
struct Node{
    int l,r;
}node[N];

bool cmp(Node a,Node b){
    if(a.r==b.r) return a.l<b.l;
    return a.r<b.r;
}

int main(){
    int n;
    cin>>n;
    int num,s;
    for(int i=0;i<n;i++){
        cin>>num>>s;
        node[i].l=num,node[i].r=num+s;
    }
    sort(node,node+n,cmp);
    int ans=0,x=0;
    for(int i=0;i<n;i++)
        if(node[i].l>=x){
            x=node[i].r;
            ans++;
        }
    cout<<ans<<endl;
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值