제출 #489483

#제출 시각아이디문제언어결과실행 시간메모리
489483fhvirus3단 점프 (JOI19_jumps)C++17
19 / 100
372 ms144668 KiB
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; #define ff first #define ss second #define pb emplace_back #define AI(x) begin(x),end(x) template<class I> bool chmin(I&a, I b){ return a > b ? (a=b, true) : false; } template<class I> bool chmax(I&a, I b){ return a < b ? (a=b, true) : false; } #ifdef OWO #define debug(args...) LKJ("\033[1;32m[ " + string(#args) + " ]\033[0m", args) template<class I> void LKJ(I&&x){ cerr << x << endl; } template<class I, class...T> void LKJ(I&&x, T&&...t){ cerr << x << ", "; LKJ(t...); } template<class I> void OI(I a, I b){ while(a < b) cerr << *a << " \n"[next(a) == b], ++a; } #else #define debug(...) 0 #define OI(...) 0 #endif // const int kN = 500005; const int kN = 5005; const int kQ = 500005; int N, Q, A[kN]; int L[kQ], R[kQ]; void input(){ cin >> N; for(int i = 1; i <= N; ++i) cin >> A[i]; cin >> Q; for(int i = 0; i < Q; ++i) cin >> L[i] >> R[i]; } int rm[kN][kN]; int ans[kN][kN]; void solve(){ for(int i = 1; i <= N; ++i){ for(int j = i; j <= N; ++j) rm[i][j] = max(rm[i][j-1], A[j]); } for(int i = 1; i <= N; ++i){ for(int j = i+2; j <= N; ++j){ ans[i][j] = A[i] + A[j] + rm[i+1][i+(j-i)/2]; } } for(int i = 1; i <= N; ++i) for(int j = i+2; j <= N; ++j) ans[i][j] = max(ans[i][j], ans[i][j-1]); for(int i = N-1; i >= 1; --i) for(int j = i+2; j <= N; ++j) ans[i][j] = max(ans[i][j], ans[i+1][j]); for(int i = 0; i < Q; ++i) cout << ans[L[i]][R[i]] << '\n'; } signed main(){ ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); input(); solve(); return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...