# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
191505 | sealnot123 | 3단 점프 (JOI19_jumps) | C++14 | 1576 ms | 67188 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define x first
#define y second
#define pb push_back
#define eb emplace_back
#define all(a) (a).begin(),(a).end()
#define SZ(a) (int)(a).size()
using namespace std;
typedef long long LL;
typedef pair<LL,LL> PLL;
typedef pair<int,int> PII;
typedef double D;
typedef long double LD;
const int N = 500005;
vector<int> Q[N];
int ANS[N], L[N], R[N];
LL seg[4*N], lazy[4*N], MA[4*N], num[N];
vector<int> sta;
int n, q;
void build(int l = 1, int r = n, int now = 1){
if(l == r){
seg[now] = MA[now] = num[l];
return ;
}
int m = (l+r)>>1;
build(l, m, now<<1); build(m+1, r, now<<1|1);
seg[now] = MA[now] = max(MA[now<<1], MA[now<<1|1]);
}
void push(int l, int r, int now){
if(lazy[now]){
seg[now] = max(seg[now], MA[now] + lazy[now]);
if(l!=r){
lazy[now<<1] = max(lazy[now<<1], lazy[now]);
lazy[now<<1|1] = max(lazy[now<<1|1], lazy[now]);
}
lazy[now] = 0;
}
}
void add(int ll, int rr, int v, int l = 1, int r = n, int now = 1){
push(l, r, now);
if(ll > rr || l > rr || r < ll) return ;
if(l >= ll && r <= rr){
lazy[now] = v;
push(l, r, now);
return ;
}
int m = (l+r)>>1;
add(ll, rr, v, l, m, now<<1);
add(ll, rr, v, m+1, r, now<<1|1);
seg[now] = max(seg[now<<1], seg[now<<1|1]);
}
int get(int ll, int rr, int l = 1, int r = n, int now = 1){
push(l, r, now);
if(ll > rr || l > rr || r < ll) return 0;
if(l >= ll && r <= rr) return seg[now];
int m = (l+r)>>1;
return max(get(ll, rr, l, m, now<<1), get(ll, rr, m+1, r, now<<1|1));
}
int main(){
int i,j,k,l,a,b,c,d;
scanf("%d",&n);
for(i=1;i<=n;i++) scanf("%lld",&num[i]);
build();
scanf("%d",&q);
for(i=1;i<=q;i++){
scanf("%d%d",&L[i],&R[i]);
Q[L[i]].pb(i);
}
for(i = n; i > 0; i--){
while(!sta.empty()){
a = sta.back();
add(2*a-i, n, num[sta.back()]+num[i]);
if(num[sta.back()] < num[i]) sta.pop_back();
else break;
}
sta.pb(i);
for(int it : Q[i]){
ANS[it] = get(i, R[it]);
}
}
for(i=1;i<=q;i++) printf("%d\n",ANS[i]);
return 0;
}
/*
5
5 4 4 5 4
1
1 5
15
12 96 100 61 54 66 37 34 58 21 21 1 13 50 81
12
1 15
3 12
11 14
1 13
5 9
4 6
6 14
2 5
4 15
1 7
1 10
8 13
*/
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |