# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
219730 | MKopchev | Foehn Phenomena (JOI17_foehn_phenomena) | C++14 | 209 ms | 12408 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int nmax=2e5+42;
int n,q,s,t;
long long fenwick[nmax];
void update(int pos,int val)
{
while(pos<=n)
{
fenwick[pos]+=val;
pos=pos+(pos&(-pos));
}
}
void upd(int l,int r,int val)
{
update(l,val);
update(r+1,-val);
}
long long query(int pos)
{
long long ret=0;
while(pos)
{
ret=ret+fenwick[pos];
pos=pos-(pos&(-pos));
}
return ret;
}
long long score(int pos)
{
if(pos==n)return 0;
long long was=query(pos),is=query(pos+1);
if(was<is)return (was-is)*s;
return (was-is)*t;
}
int inp[nmax];
int main()
{
scanf("%i%i%i%i",&n,&q,&s,&t);
for(int i=0;i<=n;i++)
{
scanf("%i",&inp[i]);
if(i)upd(i,i,inp[i]);
}
long long ret=0;
for(int i=0;i<n;i++)
ret=ret+score(i);
for(int i=1;i<=q;i++)
{
int l,r,x;
scanf("%i%i%i",&l,&r,&x);
ret=ret-score(l-1)-score(r);
upd(l,r,x);
ret=ret+score(l-1)+score(r);
printf("%lld\n",ret);
}
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... |