# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
379160 | FatihSolak | Deda (COCI17_deda) | C++17 | 1097 ms | 4044 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define N 200005
#define K 20
#define INF 1000000005
using namespace std;
int t[4*N];
void upd(int v,int l,int r,int pos,int val){
if(l == r){
t[v] = val;
return;
}
int m = (l+r)/2;
if(pos<=m){
upd(v*2,l,m,pos,val);
}
else{
upd(v*2+1,m+1,r,pos,val);
}
t[v] = min(t[v*2],t[v*2+1]);
}
int get(int v,int tl,int tr,int l,int r,int val){
if(tr < l || r < tl)return -1;
if(t[v] > val)return -1;
if(tl == tr)return tl;
int tm = (tl+tr)/2;
if(get(v*2,tl,tm,l,r,val) != -1){
return get(v*2,tl,tm,l,r,val);
}
return get(v*2+1,tm+1,tr,l,r,val);
}
void solve(){
int n,q;
cin >> n >> q;
for(int i=0;i<4*N;i++)t[i] = INF;
for(int i=0;i<q;i++){
char a;
int b,c;
cin >> a >> b >> c;
if(a == 'M'){
upd(1,1,n,c,b);
}
if(a == 'D'){
cout << get(1,1,n,c,n,b) << endl;
}
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#ifdef Local
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
#endif
int t=1;
//cin>>t;
while(t--){
solve();
}
#ifdef Local
cout<<endl<<fixed<<setprecision(2)<<1000.0 * clock() / CLOCKS_PER_SEC<< " milliseconds ";
#endif
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |