# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
731147 | sleepntsheep | Foehn Phenomena (JOI17_foehn_phenomena) | C++17 | 200 ms | 7552 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <algorithm>
template <class T>
struct BIT
{
int n; T *a;
BIT(int m) : n(1+m), a(new T[1+m]) {}
~BIT() { delete []a; }
void inc(int p, T x) { for (++p; p <= n; p+=p&-p) a[p] += x; }
auto qry(int p, T z = 0) { for (++p; p; p-=p&-p) z+=a[p]; return z;}
};
using ll = long long;
#define N 402005
int n, q, s, t;
BIT<ll> f(N), g(N);
int main()
{
scanf("%d%d%d%d", &n, &q, &s, &t);
for (ll i = 0, x; i <= n; i++)
scanf("%lld", &x), f.inc(i, x), f.inc(i+1, -x);
for (int i = 1; i <= n; i++)
{
auto d = -f.qry(i) + f.qry(i-1);
g.inc(i, (d < 0 ? s : t) * d);
}
auto upd = [&](int p, ll x){
auto d = f.qry(p-1) - f.qry(p);
g.inc(p, -(d < 0 ? s : t) * d);
f.inc(p, x);
d = f.qry(p-1) - f.qry(p);
g.inc(p, (d < 0 ? s : t) * d);
};
for (ll l, r, x; q--;)
{
scanf("%lld%lld%lld", &l, &r, &x);
upd(l, x);
upd(r+1, -x);
printf("%lld\n", g.qry(n));
}
return 0;
}
컴파일 시 표준 에러 (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... |