AtCoder Beginner Contest 217 D - Cutting Woods (set+lower_bound)
Posted karshey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AtCoder Beginner Contest 217 D - Cutting Woods (set+lower_bound)相关的知识,希望对你有一定的参考价值。
set+lower_bound;
注意:
s.lower_bound(x)返回的是迭代器,想要输出迭代器指向的值和它的前一位指向的值应该是:- -t而不是t- -;
auto t=s.lower_bound(x);
cout<<*t-*(--t);
代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define pb push_back
#define fi first
#define se second
#define mem(a,x) memset(a,x,sizeof(a));
#define db double
//======================
const int N=2e5+10;
int a[N];
int main()
{
set<int>s;
int n,q;
cin>>n>>q;
s.insert(0),s.insert(n);
for(int i=0;i<q;i++)
{
int a,b;cin>>a>>b;
if(a==1)
{
s.insert(b);
}
else
{
auto t=s.lower_bound(b);
int ans=*t-*(--t);
cout<<ans<<endl;
}
}
return 0;
}
以上是关于AtCoder Beginner Contest 217 D - Cutting Woods (set+lower_bound)的主要内容,如果未能解决你的问题,请参考以下文章
AtCoder Beginner Contest 115 题解