8VC Venture Cup 2016 - Final Round (Div. 2 Edition) E. Package Delivery

原题链接

D. Factory Repairs
time limit per test
4 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 diai, indicating that ai new orders have been placed for thedi-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 nkab, and q (1 ≤ k ≤ n ≤ 200 0001 ≤ b < a ≤ 10 0001 ≤ 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:

  • di ai (1 ≤ di ≤ n1 ≤ ai ≤ 10 000), representing an update of ai orders on day di, or
  • 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.

Examples
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
output
3
6
4
input
5 4 10 1 6
1 1 5
1 5 5
1 3 2
1 5 2
2 1
2 2
output
7
1
Note

Consider the first sample.

We produce up to 1 thimble a day currently and will produce up to 2 thimbles a day after repairs. Repairs take 2 days.

For the first question, we are able to fill 1 order on day 1, no orders on days 2 and 3 since we are repairing, no orders on day 4 since no thimbles have been ordered for that day, and 2 orders for day 5 since we are limited to our production capacity, for a total of 3 orders filled.

For the third question, we are able to fill 1 order on day 11 order on day 2, and 2 orders on day 5, for a total of 4 orders.


维护三个线段树,1.一段时间内orders的数目之和,2.第i天的orders若大于b,则把其减b求和,3.第i天的orders数大于a,则把其减a求和。

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <vector>
#define maxn 200005
using namespace std;
typedef long long ll;

int num[3][maxn<<2];
int n, k, a, b, q;
void Update(int v, int l, int r, int p, int d){
	
	if(l == r){
		num[0][v] += d;
		if(num[0][v] > b)
		 num[1][v] = num[0][v] - b;
		if(num[0][v] > a)
		 num[2][v] = num[0][v] - a;
		return ;
	}
	int mid = (l + r) >> 1;
	if(p <= mid)
	 Update(v<<1, l, mid, p, d);
	else
	 Update(v<<1|1, mid+1, r, p, d);
	for(int i = 0; i < 3; i++)
	  num[i][v] = num[i][v<<1] + num[i][v<<1|1];
}
void Query(int v, int L, int R, int l, int r, int *h){
	
	if(l == L && R == r){
		 for(int i = 0; i < 3; i++)
		   h[i] += num[i][v];
		return ;
	}
	int mid = (L + R) >> 1;
	if(r <= mid)
	   Query(v<<1, L, mid, l, r, h);
    else if(l > mid)
	    Query(v<<1|1, mid+1, R, l, r, h);
	else {
	      Query(v<<1, L, mid, l, mid, h);
	      Query(v<<1|1, mid+1, R, mid+1, r, h);	
	    }
}
int main(){
	
//	freopen("in.txt", "r", stdin);
	scanf("%d%d%d%d%d", &n, &k, &a, &b, &q);
	
	int t, k1, k2;
	while(q--){
		
		scanf("%d", &t);
		if(t == 1){
			scanf("%d%d", &k1, &k2);
			Update(1, 1, n, k1, k2);
		}
		else {
			scanf("%d", &k2);
			int ans = 0;
			if(k2 - 1 >= 1){
			   int h[3] = {0};
			     Query(1, 1, n, 1, k2-1, h);
			     ans = h[0] - h[1];
		     }
			if(k2+k <= n){
				int h[3] = {0};
			    Query(1, 1, n, k2+k, n, h);
			    ans += h[0] - h[2];
		     }
			printf("%d\n", ans);
		}
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值