# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
392671 | Mamnoon_Siam | Sjeckanje (COCI21_sjeckanje) | C++17 | 2068 ms | 428 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ii = pair<int, int>;
using vi = vector<int>;
#define all(v) begin(v), end(v)
#define sz(v) (int)(v).size()
#define fi first
#define se second
const int N = 3003;
int n, q;
ll a[N], dp[N];
int main(int argc, char const *argv[])
{
#ifdef LOCAL
freopen("in", "r", stdin);
#endif
scanf("%d %d", &n, &q);
for(int i = 1; i <= n; ++i) {
scanf("%lld", &a[i]);
}
while(q--) {
int l, r, x;
scanf("%d %d %d", &l, &r, &x);
for(int i = l; i <= r; ++i)
a[i] += x;
for(int i = n; i >= 1; --i) {
dp[i] = max(a[i] - a[n], a[n] - a[i]);
for(int j = i+1; j <= n; ++j) {
dp[i] = max(dp[i], dp[j] + a[i] - a[j-1]);
dp[i] = max(dp[i], dp[j] + a[j-1] - a[i]);
}
}
printf("%lld\n", dp[1]);
}
return 0;
}
/*
* use std::array instead of std::vector, if u can
* overflow?
* array bounds
*/
컴파일 시 표준 에러 (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... |