# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1030660 | Unforgettablepl | Bitaro's travel (JOI23_travel) | C++17 | 401 ms | 16244 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
struct segtree{
vector<int> tree;
segtree():tree(524288,INT64_MIN){}
void update(int k,int x){
k+=262144;
tree[k]=x;
while(k/=2){
tree[k]=max(tree[2*k],tree[2*k+1]);
}
}
int get(int a,int b){
a+=262144;b+=262144;
int ans = INT64_MIN;
while(a<=b){
if(a&1)ans=max(ans,tree[a++]);
if(b%2 == 0)ans=max(ans,tree[b--]);
a/=2;b/=2;
}
return ans;
}
};
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |