切长条(贪心)
程序员文章站
2022-06-13 12:23:50
...
思路:我们把它换成【起始区间,结束区间】,我们吧每次切的地方尽量向后这样切的就多,所以我们按起始时间排序,每次取他截止区间的点看他与之前的是否重合,如果不重合我们就在之前切一刀
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <set>
#include<iostream>
#include<vector>
//#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define SIS std::ios::sync_with_stdio(false)
#define space putchar(' ')
#define enter putchar('\n')
#define lson root<<1
#define rson root<<1|1
typedef pair<int,int> PII;
const int mod=1e4+7;
const int N=2e5+10;
const int inf=0x7f7f7f7f;
ll gcd(ll a,ll b)
{
return b==0?a:gcd(b,a%b);
}
ll lcm(ll a,ll b)
{
return a*(b/gcd(a,b));
}
template <class T>
void read(T &x)
{
char c;
bool op = 0;
while(c = getchar(), c < '0' || c > '9')
if(c == '-')
op = 1;
x = c - '0';
while(c = getchar(), c >= '0' && c <= '9')
x = x * 10 + c - '0';
if(op)
x = -x;
}
template <class T>
void write(T x)
{
if(x < 0)
x = -x, putchar('-');
if(x >= 10)
write(x / 10);
putchar('0' + x % 10);
}
PII a[N];
int main()
{
int n;
scanf("%d",&n);
for(int i=0;i<n;i++)
{
scanf("%d%d",&a[i].first,&a[i].second);
a[i].second+=a[i].first-1;
}
sort(a,a+n);
int ans=0,low=a[0].second;
for(int i=1;i<n;i++)
{
low=min(low,a[i].second);
if(low<a[i].first)
{
ans++; low=a[i].second;
}
}
cout<<ans+1<<endl;
return 0;
}
上一篇: 用PHP实现网页开发中的翻页跳转
下一篇: 贪心