8VC 벤 처 컵 2016-Final Round(Div.2 Edition)D.Factory Repairs 트 리 배열
제목 연결:
http://www.codeforces.com/contest/635/problem/D
Description
A factory produces thimbles in bulk. Typically, it can produce up to a thimbles a day. However, some of the machinery is defective, so it can currently only produce b thimbles each day. The factory intends to choose a k-day period to do maintenance and construction; it cannot produce any thimbles during this time, but will be restored to its full production of a thimbles per day after the k days are complete.
Initially, no orders are pending. The factory receives updates of the form di, ai, indicating that ai new orders have been placed for the di-th day. Each order requires a single thimble to be produced on precisely the specified day. The factory may opt to fill as many or as few of the orders in a single batch as it likes.
As orders come in, the factory owner would like to know the maximum number of orders he will be able to fill if he starts repairs on a given day pi. Help the owner answer his questions.
Input
The first line contains five integers n, k, a, b, and q (1 ≤ k ≤ n ≤ 200 000, 1 ≤ b < a ≤ 10 000, 1 ≤ q ≤ 200 000) — the number of days, the length of the repair time, the production rates of the factory, and the number of updates, respectively.
The next q lines contain the descriptions of the queries. Each query is of one of the following two forms:
1 di ai (1 ≤ di ≤ n, 1 ≤ ai ≤ 10 000), representing an update of ai orders on day di, or 2 pi (1 ≤ pi ≤ n - k + 1), representing a question: at the moment, how many orders could be filled if the factory decided to commence repairs on day pi? It's guaranteed that the input will contain at least one query of the second type.
Output
For each query of the second type, print a line containing a single integer — the maximum number of orders that the factory can fill over all n days.
Sample Input
5 2 2 1 8 1 1 2 1 5 3 1 2 1 2 2 1 4 2 1 3 2 2 1 2 3
Sample Output
3 6 4
Hint
제목
최대 n 일,그리고 당신 은 매일 일반적인 상황 에서 b 개의 물건 을 만 들 수 있 습 니 다.좋 은 상황 에서 b 개의 물건 을 만 들 수 있 습 니 다.
일반적인 상황 에서 좋 은 상황 까지 k 일의 휴식 이 필요 하 다.이 k 일 로 는 아무것도 할 수 없다.
q 차 문의
지금 너 는 두 가지 조작 이 있다.
1 x y,x 일 째 Y 개 필요(독립 하지 않 음)
2.x 는 x 일 째 휴식 을 취한 다음 에 가장 많은 것 을 만족 시 킬 수 있 는 지 물 어 본다(독립 적 인).
문제 풀이:
트 리 배열 하면 돼 요.
k 일 전,나 는 모든 점 의 최대 치 는 b 였 다.
k 일 후,각 점 의 최대 치 는 a 입 니 다.
그리고 구간 과 구간 을 지 켜 주시 면 됩 니 다.
코드
#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e5+7;
int n,k,a,b,q;
int c[maxn][2];
int A[maxn];
int lowbit(int x)
{
return x&(-x);
}
void update(int x,int y,int z)
{
for(int i=x;i<maxn;i+=lowbit(i))
c[i][z]+=y;
}
int getsum(int x,int z)
{
int ans = 0;
for(int i=x;i;i-=lowbit(i))
ans+=c[i][z];
return ans;
}
int main()
{
scanf("%d%d%d%d%d",&n,&k,&a,&b,&q);
for(int i=1;i<=q;i++)
{
int op;scanf("%d",&op);
if(op==1)
{
int x,y;
scanf("%d%d",&x,&y);
int p1 = A[x];A[x]+=y;
update(x,min(b,A[x])-min(b,p1),0);
update(x,min(a,A[x])-min(a,p1),1);
}
else
{
int x;scanf("%d",&x);
printf("%d
",getsum(x-1,0)+getsum(n,1)-getsum(x+k-1,1));
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.