A - Vessels(并查集)

There is a system of n vessels arranged one above the other as shown in the figure below. Assume that the vessels are numbered from 1 ton, in the order from the highest to the lowest, the volume of thei-th vessel is ai liters.

Initially, all the vessels are empty. In some vessels water is poured. All the water that overflows from thei-th vessel goes to the (i + 1)-th one. The liquid that overflows from the n-th vessel spills on the floor.

Your task is to simulate pouring water into the vessels. To do this, you will need to handle two types of queries:

  1. Add xi liters of water to thepi-th vessel;
  2. Print the number of liters of water in the ki-th vessel.

When you reply to the second request you can assume that all the water poured up to this point, has already overflown between the vessels.

Input

The first line contains integer n — the number of vessels (1 ≤ n ≤ 2·105). The second line containsn integers a1, a2, ..., an — the vessels' capacities (1 ≤ ai ≤ 109). The vessels' capacities do not necessarily increase from the top vessels to the bottom ones (see the second sample). The third line contains integerm — the number of queries (1 ≤ m ≤ 2·105). Each of the nextm lines contains the description of one query. The query of the first type is represented as "pi xi", the query of the second type is represented as "ki" (1 ≤ pi ≤ n,1 ≤ xi ≤ 109,1 ≤ ki ≤ n).

Output

For each query, print on a single line the number of liters of water in the corresponding vessel.

Example
Input
2
5 10
6
1 1 4
2 1
1 2 5
1 1 4
2 1
2 2
Output
4
5
8
Input
3
5 10 8
6
1 1 12
2 2
1 1 6
1 3 2
2 2
2 3
Output
7
10
5




思路: 暴力试了多次都过不了 最后选择并查集 好吧 我不会写诗copy网上的

主要思路就是说 当第输入的小船满了 之后直接加到后面没满的小船上这样子时间会比较少


代码:

    #include<stdio.h>  
    #include<string.h>  
    using namespace std;  
    int n;  
    int sum[1500000];  
    int a[15000000];  
    int f[15000000];  

int find(int a)
{
    int r=a;
    while(r!=f[r])
    r=f[r];
    int i=a;
    int j;
    while(i!=r)
    {
       j=f[i];
       f[i]=r;
       i=j;    
    }
    return r;
}
void merge(int x,int y)
{
    int fx=find(x);
    int fy=find(y);
    if(fx>fy)
    f[fy]=fx;
    else
    f[fx]=fy;
}
 
    int main()  
    {  
        while(~scanf("%d",&n))  
        {  
            memset(a,0,sizeof(a));  
            memset(sum,0,sizeof(sum));  
            for(int i=1;i<=n;i++)  
            {  
                scanf("%d",&a[i]);  
                f[i]=i;  
            }  
            f[n+1]=n+1;  
            int q;  
            scanf("%d",&q);  
            while(q--)  
            {  
                int op;  
                scanf("%d",&op);  
                if(op==1)  
                {  
                    int x,have;  
                    scanf("%d%d",&x,&have);
                    while(have>0)
                    {
                     int F=find(x);
                     if(F==n+1)break;
                     if(a[F]-sum[F]>=have)
                     {
                         sum[F]+=have;
                         have=0;
                     }
                     else
                     {
                     have=have-(a[F]-sum[F]);
                     sum[F]=a[F];
                     merge(F,F+1);    
                     }
                    x=F;    
                    }  
                  
                }  
                if(op==2)  
                {  
                    int x;  
                    scanf("%d",&x);  
                    printf("%d\n",sum[x]);  
                }  
            }  
        }  
        return 0;
    } 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值