hdu 5032 Always Cook Mushroom 离线树状数组

#pragma comment(linker, "/STACK:102400000,102400000")
#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<queue>
#include<stack>
#include<string>
#include<map>
#include<set>
#include<cmath>
#include<cassert>
#include<cstring>
#include<iomanip>
using namespace std;
#ifdef _WIN32
#define i64 __int64
#define out64 "%I64d\len"
#define in64 "%I64d"
#else
#define i64 long long
#define out64 "%lld\len"
#define in64 "%lld"
#endif
/************ for topcoder by zz1215 *******************/
#define foreach(c,itr)  for(__typeof((c).begin()) itr=(c).begin();itr!=(c).end();itr++)
#define FOR(i,a,b)      for( int i = (a) ; i <= (b) ; i ++)
#define FF(i,a)         for( int i = 0 ; i < (a) ; i ++)
#define FFD(i,a,b)      for( int i = (a) ; i >= (b) ; i --)
#define S64(a)          scanf(in64,&a)
#define SS(a)           scanf("%d",&a)
#define LL(a)           ((a)<<1)
#define RR(a)           (((a)<<1)+1)
#define pb              push_back
#define pf              push_front
#define X               first
#define Y               second
#define CL(Q)           while(!Q.empty())Q.pop()
#define MM(name,what)   memset(name,what,sizeof(name))
#define MC(a,b)			memcpy(a,b,sizeof(b))
#define MAX(a,b)        ((a)>(b)?(a):(b))
#define MIN(a,b)        ((a)<(b)?(a):(b))
#define read            freopen("out.txt","r",stdin)
#define write           freopen("out2.txt","w",stdout)
const int maxn = 100111;

int A, B;
int m;
i64 ans[maxn];

struct Node{
	int a, b;
	bool operator < (const Node & cmp) const{
		return b*cmp.a < a*cmp.b;
	}
};

struct Z{
	int a, b, x; 
	int id;
	bool operator < (const Z & cmp) const{
		return b*cmp.a < a*cmp.b;
	}
}zx;

vector<Z>z;
vector<Node>v;

void init(){
	Node node;
	for (node.a = 1; node.a <=1000; node.a++){
		for (node.b = 1; node.b <= 1000; node.b++){
			v.push_back(node);
		}
	}
	sort(v.begin(), v.end());
}

i64 a[1111];

int lowbit(int x){
	return x&(-x);
}

void add(int pos, int num, i64 ary[],int end){
	while (pos <= end){
		ary[pos] += num;
		pos += lowbit(pos);
	}
}

i64 sum(int x, i64 ary[]){
	i64 ans = 0;
	while (x){
		ans += ary[x];
		x -= lowbit(x);
	}
	return ans;
}

void start(){
	sort(z.begin(), z.end());
	for (int i = 0; i <= 1000; i++){
		a[i] = 0;
	}
	int pos = 0;
	for (int now = 0; now < z.size(); now++){
		for (; pos < v.size(); ){
			if (z[now].b* v[pos].a >= z[now].a * v[pos].b){
				add(v[pos].a, (v[pos].a + A)*(v[pos].b + B), a, 1000);
				pos++;
			}
			else{
				break;
			}
		}
		ans[z[now].id] = sum(z[now].x, a);
	}
}

int main(){
	init();
	int T;
	cin >> T;
	for (int tt = 1; tt <= T;tt++){
		cin >> A >> B;
		cin >> m;
		z.clear();
		for (int i = 1; i <= m; i++){
		//	cin >> zx.a >> zx.b >> zx.x;
			SS(zx.a); SS(zx.b); SS(zx.x);
			zx.id = i;
			z.push_back(zx);
		}
		start();
		printf("Case #%d:\n",tt);
		for (int i = 1; i <= m; i++){
			printf("%I64d\n", ans[i]);
		}
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值