이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
long long A[200001];
long long chk[200001];
long long sum = 0;
long long n, q, s, t;
inline long long calc(long long x)
{
return (x < 0 ? x * s : x * t);
}
int main()
{
std::cin >> n >> q >> s >> t;
for (long long i = 0; i <= n; ++i)
{
std::cin >> A[i];
}
for (long long i = 1; i <= n; ++i)
{
chk[i] = A[i - 1] - A[i];
sum += calc(chk[i]);
}
while (q-- > 0)
{
long long l, r, x;
std::cin >> l >> r >> x;
if (l > 0)
{
sum -= calc(chk[l]);
chk[l] -= x;
sum += calc(chk[l]);
}
if (r < n)
{
sum -= calc(chk[r + 1]);
chk[r + 1] += x;
sum += calc(chk[r + 1]);
}
std::cout << sum << '\n';
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |