# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
598636 | CaroLinda | Weirdtree (RMI21_weirdtree) | C++14 | 2071 ms | 6104 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "weirdtree.h"
#include <bits/stdc++.h>
//solving for k == 1
#define ll long long
const int MAXN = 8e4+10;
using namespace std;
int N, Q;
int mx[MAXN*4];
ll soma[MAXN*4];
int m(int l, int r){
return (l+r)>>1;
}
void updPoint(int pos, int l, int r, int id, int val){
if(l == r){
mx[pos] = val;
soma[pos] = val;
return;
}
if(id <= m(l,r))
updPoint(pos<<1, l, m(l,r), id, val);
else updPoint(pos<<1|1, m(l,r)+1, r, id, val);
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |