首页 > 其他分享 >【线段树】 HDOJ 4027 Can you answer these queries?

【线段树】 HDOJ 4027 Can you answer these queries?

时间:2023-07-05 22:32:22浏览次数:42  
标签:these void segtree mid mark 4027 int queries include


想了好久的线段树,用到的思想好巧妙,因为最大是2的63次方,所以开了个6,7次的平方就全变成一了。。。。比较好写的一种方法是直接用不加lazy的线段树更新区间,然后加一个当sum=R-L+1就不更新的剪枝。。。。我的代码是每加一次开根就pushdown,达到7次以后就不更新了。。。




【线段树】 HDOJ 4027 Can you answer these queries?_线段树

【线段树】 HDOJ 4027 Can you answer these queries?_线段树

【线段树】 HDOJ 4027 Can you answer these queries?_线段树

【线段树】 HDOJ 4027 Can you answer these queries?_线段树

【线段树】 HDOJ 4027 Can you answer these queries?_线段树

【线段树】 HDOJ 4027 Can you answer these queries?_线段树

【线段树】 HDOJ 4027 Can you answer these queries?_线段树

【线段树】 HDOJ 4027 Can you answer these queries?_线段树

#include <iostream>
#include <sstream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <bitset>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <climits>
#define maxn 400005
#define eps 1e-7
#define mod 1000000007
#define INF 99999999
#define lowbit(x) (x&(-x))
typedef long long LL;
using namespace std;

struct node
{
	int mark, cnt;
	LL v;
}segtree[maxn];
LL num[maxn];
int n, m;
LL ans;
int ql, qr;

void build(int o, int L, int R)
{
	segtree[o].mark=0;
	segtree[o].cnt=0;
	if(L==R){
		segtree[o].v=num[L];
		return;
	}
	int mid=(R+L)/2;
	build(2*o, L, mid);
	build(2*o+1, mid+1, R);
	segtree[o].v=segtree[2*o].v+segtree[2*o+1].v;
}
void pushdown(int o, int L, int R)
{
	if(!segtree[o].mark || segtree[o].cnt>=6) return;
	if(L==R){
		segtree[o].cnt+=segtree[o].mark;
		segtree[o].v=sqrt(segtree[o].v);
		segtree[o].mark=0;
		return;
	}
	segtree[2*o].mark+=segtree[o].mark;
	segtree[2*o+1].mark+=segtree[o].mark;
	segtree[o].cnt+=segtree[o].mark;
	segtree[o].mark=0;
	int mid=(R+L)/2;
	pushdown(2*o, L, mid);
	pushdown(2*o+1, mid+1, R);
	segtree[o].v=segtree[2*o].v+segtree[2*o+1].v;
}
void query(int o, int L, int R)
{
	if(ql<=L && qr>=R){
		ans+=segtree[o].v;
		return;
	}
	int mid=(L+R)/2;
	if(ql<=mid) query(2*o, L, mid);
	if(qr>mid) query(2*o+1, mid+1, R);
}
void updata(int o, int L, int R)
{
	if(ql<=L && qr>=R){
		segtree[o].mark++;
		pushdown(o, L, R);
		return;
	}
	int mid=(L+R)/2;
	if(ql<=mid) updata(2*o, L, mid);
	if(qr>mid) updata(2*o+1, mid+1, R);
	segtree[o].v=segtree[2*o].v+segtree[2*o+1].v;
}
void solve(void)
{
	int k;
	while(m--){
		scanf("%d%d%d",&k,&ql,&qr);
		if(qr<ql) swap(qr, ql);
		if(k){
			ans=0;
			query(1, 1, n);
			printf("%I64d\n", ans);
		}
		else updata(1, 1, n);
	}
}
int main(void)
{
	int i, _=0;
	while(scanf("%d",&n)!=EOF){
		for(i=1;i<=n;i++) scanf("%I64d",&num[i]);
		scanf("%d",&m);
		build(1, 1, n);
		printf("Case #%d:\n", ++_);
		solve();
		printf("\n");
	}
	return 0;
}















标签:these,void,segtree,mid,mark,4027,int,queries,include
From: https://blog.51cto.com/u_8692734/6636181

相关文章

  • DistanceQueriesonaTree
    [ABC294G]DistanceQueriesonaTree首先树剖+线段树肯定可以直接用树剖模板过掉,但是带两个\(\log\)。我们考虑更优秀的做法。拟定\(1\)为根,首先维护前缀\(dis[i]\)为从\(1\simi\)的路径上的所有边权之和(这里记边权为在下面的点的点权)。显然,没有修改时答案是\(dis_a......
  • D Odd Queries 题解
    原题传送门题意简述给定一个数组,再给出m个各自独立(即这个操作不影响后续的询问)的询问,每次给定一个区间,询问将这个区间每个元素都修改为k后,数组总和会是奇数吗?解决思路由于n的范围很大,所以暴力肯定是不可以了,由于每个询问是独立的,我们不需要修改序列,所以不需要使用数据结构。......
  • Valid Parentheses
    Givenastringscontainingjustthecharacters'(',')','{','}','['and']',determineiftheinputstringisvalid.Aninputstringisvalidif:Openbracketsmustbeclosedbythesametype......
  • Codeforces Round #371 (Div. 1)-A. Sonya and Queries(Trie树)
    原题链接A.SonyaandQueriestimelimitpertestmemorylimitpertestinputoutputTodaySonyalearnedaboutlongintegersandinvitedallherfriendstosharethefun.Son......
  • 【每日一题】Problem 313B - Ilya and Queries
    原题解决思路使用后缀和计算到i处共有多少对\(s_i=s_{i+1}\),计算时相减以下就可以#include<bits/stdc++.h>intmain(){std::strings;intm;std::cin>>s>>m;std::vector<std::vector<int>>vec(m,std::vector<int>(2,0));......
  • Could not find the DLL(s) 'msvcp140_1.dll'. TensorFlow requires that these DLLs
      python-c"fromtransformersimportpipeline;print(pipeline('sentiment-analysis')('weloveyou'))"MicrosoftVisualC++Redistributableisnotinstalled,thismayleadtotheDLLloadfailure.                Itcanbedow......
  • hdu 4027(线段树)
    题意:给定100000个数,两种操作,0ij表示将ij这段的数字都开根号(向下取整),1ij表示查询ij之间的所有值的和。。。(所有的和都不超过64位)解题思路:这题要做区间的开平方操作,2^64最多可以做8次开平方操作,所以对于每个节点最多只有8次操作,这道题如果lazy思想的话就要保存每个区间被开平方......
  • 错误解决:These dependencies were not found: core-js/modules/es.array.push.js
    错误描述执行npmrundev后报错:Thesedependencieswerenotfound:core-js/modules/es.array.push.jsin./node_modules/@babel/runtime/helpers/objectSpread2.js,./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/@vue/cli-pluvue?vue&type=script&la......
  • 32. Longest Valid Parentheses刷题笔记
    用stack和dp来做classSolution:deflongestValidParentheses(self,s:str)->int:dp,stack=[0]*(len(s)+1),[]foriinrange(len(s)):ifs[i]=='(':stack.append(i)else:......
  • Ad Hoc Distributed Queries 的启用与关闭2
    上一篇的解决办法,主要是通过语句操作来完成,SQLServer也提供了图形操作界面来解决类似问题我们可以利用SQLServer(2005)配置工具中提供的“SQLServer外围应用配置”来完成此操作,具体的操作方法如下:1.打开“SQLServer外围应用配置”,界面如下图 2.选择“SQLServer外围应用配置......