# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
40900 | Hassoony | Deda (COCI17_deda) | C++14 | 910 ms | 62412 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include<unordered_map>
using namespace std;
typedef long long ll;
typedef double D;
const ll inf=(1ll<<61);
const int mod=1e9+7;
const int MX=2e5+9;
int n,q,ind,val,low;
char Q[MX];
int X[MX],A[MX],B[MX],Y[MX];
vector<int>v;
set<int>bit[MX*2];
void up(int x,int val){
while(x<MX*2){
bit[x].insert(val);
x+=x&-x;
}
}
int get(int x,int low){
int ret=MX*2;
while(x){
auto pp=bit[x].lower_bound(low);
if(pp!=bit[x].end())ret=min(ret,*pp);
x-=x&-x;
}
return ret;
}
int main(){
cin>>n>>q;
for(int i=1;i<=q;i++){
scanf("%s",&Q[i]);
if(Q[i]=='M'){
scanf("%d%d",&X[i],&A[i]);
v.push_back(X[i]);
}
if(Q[i]=='D'){
scanf("%d%d",&Y[i],&B[i]);
v.push_back(Y[i]);
}
}
sort(v.begin(),v.end());
for(int i=1;i<=q;i++){
if(Q[i]=='M'){
X[i]=lower_bound(v.begin(),v.end(),X[i])-v.begin()+1;
ind=X[i];val=A[i];
up(ind,val);
}
else{
Y[i]=lower_bound(v.begin(),v.end(),Y[i])-v.begin()+1;
ind=Y[i];low=B[i];
int ans=get(ind,low);
if(ans==2*MX)puts("-1");
else printf("%d\n",ans);
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |