2 분 + 선분 트 리
3062 단어 데이터 구조
C. Store
time limit per test 1.0 s
memory limit per test 256 MB
Ichuan is a store owner and his store has n products, numbered from 11 to nn.
Recently, his business is not very good, and he can occasionally sell a product, so he will confirm the information of the products sold.
MXY,it means that on the XthXth day, the product numbered YY is sold.
DXY,in currently sold products, those whose number is greater than or equal to YY, which one is the lowest number which sold before the XthXth day (including XthXth day) .
Input
the first line contains two positive integers NN,QQ(2≤N,Q≤200000)(2≤N,Q≤200000),which are the number of products and operations.
The following Q lines, each line contains one operator character (MM or DD) and two integers x,yx,y.(1≤x≤109,1≤y≤n1≤x≤109,1≤y≤n)
Output
For each request of type DXYDXY,output the number of required product. If no such product exists, output −1−1.
Examples
input
3 4
M 10 3
M 5 1
D 20 2
D 5 1
output
3
1
input
10 10
M 20 10
D 1 9
M 2 3
D 17 10
M 20 2
D 8 2
M 40 1
D 25 2
M 33 9
D 37 9
output
-1
-1
3
2
9
제목: 번호 가 1 - n 인 상품 은 m 가지 조작 이 있 습 니 다. M x y 는 업데이트 번호 가 Y 인 상품 의 판매 일 수 를 x 로 표시 하고 D x y 는 조회 만족 번호 > = y 이 며 판매 일수 < = x 의 최소 번 호 를 표시 합 니 다.
분석: 선분 수 유지 번호 가 i 인 상품 판매 의 최소 일수, 단일 업데이트, 구간 조회, 최종 2 분 결 과 를 얻 으 면 됩 니 다.
Ac code:
#include
using namespace std;
const int maxn=2e5+3;
const int INF=1e9+5;
int tree[maxn<<2];/// ,
int n;
void pushup(int rt)
{
tree[rt]=min(tree[rt<<1],tree[rt<<1|1]);
}
void build(int rt,int l,int r)
{
if(l==r){
tree[rt]=INF;
return;
}
int mid=(l+r)>>1;
build(rt<<1,l,mid);
build(rt<<1|1,mid+1,r);
pushup(rt);
}
void update(int rt,int p,int l,int r,int val)
{
if(l==r){
tree[rt]=val;
return;
}
int mid=(l+r)>>1;
if(p<=mid) update(rt<<1,p,l,mid,val);
else update(rt<<1|1,p,mid+1,r,val);
pushup(rt);
}
int query(int rt,int L,int R,int l,int r)
{
if(L<=l&&r<=R){
return tree[rt];
}
int mid=(l+r)>>1;
int ans=INF;
if(L<=mid) ans=min(ans,query(rt<<1,L,R,l,mid));
if(mid>1;
if(query(1,l,mid,1,n)<=val){/// [l,mid]
ans=mid;
r=mid-1;
}
else l=mid+1;/// [mid+1,r]
}
return ans;
}
int main()
{
int m;
scanf("%d%d",&n,&m);
build(1,1,n);
char op[10];
int x,y;
while(m--){
scanf("%s%d%d",op,&x,&y);
if(op[0]=='M') update(1,y,1,n,x);
else{
printf("%d
",ask(y,n,x));
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.