이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define X first
#define Y second
#define SZ(a) ((int)a.size())
#define ALL(v) v.begin(), v.end()
#define pb push_back
int arr[250005], dp[250005];
int main() {
ios::sync_with_stdio(0), cin.tie(0);
int n;
cin >> n;
for (int i = 1; i <= n; ++i)
cin >> arr[i];
int q;
cin >> q;
for (int i = 1; i <= q; ++i) {
int x, y, a, b;
cin >> x >> y >> a >> b;
arr[x] = y;
int ans = 1;
ll cur = 0, sum = 0;
for (int j = a + 1; j <= b; ++j) sum += arr[j];
for (int j = a + 1; j <= b; ++j) {
dp[j] = -n;
if (j == a + 1) dp[j] = 1;
if (cur > arr[j]) dp[j] = 2;
ll nw = 0;
for (int k = j - 1; k > a && k > j - 70; --k) {
if (nw > arr[k] && nw > arr[j]) dp[j] = max(dp[j], dp[k] + 2);
nw += arr[k];
}
cur += arr[j];
if (sum - cur > arr[j]) ans = max(ans, dp[j] + 1);
if (j == b) ans = max(ans, dp[j]);
}
cout << ans << "\n";
}
}
# | 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... |