#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mxN=2e5+5;
ll a[mxN],dp[mxN];
int main(){
cin.sync_with_stdio(0); cin.tie(0);
#ifdef LOCAL
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
int n,q; cin>>n>>q;
for(int i=1;i<=n;i++)
cin>>a[i];
while(q--){
int l,r,x; cin>>l>>r>>x;
for(int i=l;i<=r;i++)
a[i]+=x;
// for(int i=1;i<=n;i++){
// dp[i]=dp[i-1];
// if(i>1) dp[i]=max(dp[i],dp[i-2]+abs(a[i]-a[i-1]));
// if(i>2) dp[i]=max(dp[i],dp[i-3]+max(abs(a[i]-a[i-1]),max(abs(a[i]-a[i-2]),abs(a[i-1]-a[i-2]))));
// }
for(int i=1;i<=n;i++){
ll lo=1e18; ll hi=-1e18;
dp[i]=0;
for(int j=i-1;j>=0;j--){
lo=min(lo,a[j+1]);
hi=max(hi,a[j+1]);
dp[i]=max(dp[i],hi-lo+dp[j]);
}
}
cout<<dp[n]<<"\n";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
204 KB |
Output is correct |
2 |
Correct |
9 ms |
332 KB |
Output is correct |
3 |
Correct |
9 ms |
324 KB |
Output is correct |
4 |
Correct |
10 ms |
332 KB |
Output is correct |
5 |
Correct |
8 ms |
336 KB |
Output is correct |
6 |
Correct |
8 ms |
332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
204 KB |
Output is correct |
2 |
Correct |
9 ms |
332 KB |
Output is correct |
3 |
Correct |
9 ms |
324 KB |
Output is correct |
4 |
Correct |
10 ms |
332 KB |
Output is correct |
5 |
Correct |
8 ms |
336 KB |
Output is correct |
6 |
Correct |
8 ms |
332 KB |
Output is correct |
7 |
Execution timed out |
2070 ms |
448 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
204 KB |
Output is correct |
2 |
Correct |
9 ms |
332 KB |
Output is correct |
3 |
Correct |
9 ms |
324 KB |
Output is correct |
4 |
Correct |
10 ms |
332 KB |
Output is correct |
5 |
Correct |
8 ms |
336 KB |
Output is correct |
6 |
Correct |
8 ms |
332 KB |
Output is correct |
7 |
Execution timed out |
2070 ms |
448 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |