我是靠谱客的博主 含蓄铃铛,最近开发中收集的这篇文章主要介绍hdu1166 敌兵布阵--树状数组,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1166


#define _CRT_SECURE_NO_DEPRECATE

#include<iostream>
#include<vector>
#include<cstring>
#include<queue>
#include<stack>
#include<algorithm>
#include<cmath>
#include<string>
#include<stdio.h>
#define INF 1000000000
#define eps 0.0001
using namespace std;

int t;
int n;
int a[50005];

int lowBit(int pos)
{
	return pos&(-pos);
}

void update(int pos, int value)
{
	while (pos <= n)
	{
		a[pos] += value;
		pos += lowBit(pos);
	}
}

int sum(int pos)
{
	int ans = 0;
	while (pos >= 1)
	{
		ans += a[pos];
		pos -= lowBit(pos);
	}

	return ans;
}

int main() 
{
	int cas = 1;
	int v;
	char s[7];
	int x, y;
	int l, r;

	scanf("%d", &t);

	while (t--)
	{
		memset(a, 0, sizeof(a));
		scanf("%d", &n);
		for (int i = 1; i <= n; i++)
		{
			scanf("%d", &v);
			update(i, v);
		}

		printf("Case %d:n", cas++);
		while (scanf("%s", s))
		{
			if (s[0] == 'E')
				break;
			scanf("%d%d", &x, &y);
			if (s[0] == 'A')
				update(x, y);
			else if (s[0] == 'S')
				update(x, -y);
			else
				printf("%dn", sum(y) - sum(x - 1));
		}
	}
	return 0;
}




最后

以上就是含蓄铃铛为你收集整理的hdu1166 敌兵布阵--树状数组的全部内容,希望文章能够帮你解决hdu1166 敌兵布阵--树状数组所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部