zoukankan      html  css  js  c++  java
  • 清点人数

    https://loj.ac/problem/10116

    题目描述

      有(n)节车厢,有k个操作,分为三种:(①)询问前m节车厢中的总人数;(②)第m节车厢增加x人;(③)第m节车厢减少x人。

    思路

      维护前缀和,树状数组的模板题,直接套板子即可。

    代码

    #include <bits/stdc++.h>
    using namespace std;
    const int N=5e5+10;
    
    int read()
    {
    	int res=0,w=1;
    	char ch=getchar();
    	while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
    	while(ch>='0'&&ch<='9'){res=(res<<3)+(res<<1)+ch-'0';ch=getchar();}
    	return res*w;
    }
    void write(int x)
    {
    	if(x>10)write(x/10);
    	putchar(x%10+'0');
    }
    
    int c[N],n;
    int lowbit(int x)
    {
    	return x&-x;
    }
    void add(int x,int w)
    {
    	while(x<=n)
    	{
    		c[x]+=w;
    		x+=lowbit(x);
    	}
    }
    int query(int x)
    {
    	int res=0;
    	while(x)
    	{
    		res+=c[x];
    		x-=lowbit(x);
    	}
    	return res;
    }
    int main() 
    {
    	int k;
    	n=read();k=read();
    	while(k--)
    	{
    		char ch;
    		scanf(" %c",&ch);
    		if(ch=='A')
    		{
    			int m=read();
    			write(query(m));
    			putchar('
    ');
    //			printf("%d
    ",query(m));
    		}
    		else
    		{
    			int m=read(),p=read();
    			if(ch=='B')add(m,p);
    			else add(m,-p);
    		}
    	}
    }
    
  • 相关阅读:
    刷新
    自定义背景色
    会议通js
    Flex Layout Attribute
    spin.js
    jq size()与length的区别
    初识node.js
    [Swift]归并排序 | Merge sort
    [Swift]桶排序 | Bucket sort
    [Swift]计数排序 | Counting sort
  • 原文地址:https://www.cnblogs.com/fangbozhen/p/11755312.html
Copyright © 2011-2022 走看看