답안 #916450

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
916450 2024-01-26T00:51:21 Z 12345678 3단 점프 (JOI19_jumps) C++17
0 / 100
17 ms 4792 KB
#include <bits/stdc++.h>

using namespace std;

const int nx=5e5+5;
int n, a[nx], mx[nx], res=-1e9, q, l, r;
stack<int> s;

int main()
{
    cin.tie(NULL)->sync_with_stdio(false);
    cin>>n;
    for (int i=1; i<=n; i++) cin>>a[i];
    mx[n+1]=-1e9;
    for (int i=n; i>=1; i--) mx[i]=max(mx[i+1], a[i]);
    cin>>q>>l>>r;
    for (int i=1; i<=n; i++)
    {
        while (!s.empty()&&s.top()<=a[i]) res=max(res, a[s.top()]+a[i]+mx[min(n+1, 2*i-s.top())]), s.pop();
        if (!s.empty()) res=max(res, a[s.top()]+a[i]+mx[min(n+1, 2*i-s.top())]);
        s.push(i);
    }
    cout<<res;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2396 KB Output is correct
2 Incorrect 1 ms 2396 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2396 KB Output is correct
2 Incorrect 1 ms 2396 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 17 ms 4792 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2396 KB Output is correct
2 Incorrect 1 ms 2396 KB Output isn't correct
3 Halted 0 ms 0 KB -