# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
808737 | oscar1f | 3단 점프 (JOI19_jumps) | C++17 | 677 ms | 114100 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int MAX_VAL=500*1000+5,INFINI=1000*1000*1000,DECA=(1<<19);
struct noeud {
int maxDF=-INFINI,maxD=-INFINI,maxF=-INFINI;
};
noeud prod(noeud a,noeud b) {
return {max(max(a.maxDF,b.maxDF),a.maxD+b.maxF),max(a.maxD,b.maxD),max(a.maxF,b.maxF)};
}
struct segtree {
vector<noeud> tree;
int n;
segtree(int _n) {
n=_n;
tree.resize(2*n);
}
void modif(int pos,noeud nouvVal) {
pos+=n;
tree[pos]=nouvVal;
while (pos>1) {
pos/=2;
tree[pos]=prod(tree[2*pos],tree[2*pos+1]);
}
# | 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... |