zoukankan      html  css  js  c++  java
  • CodeForces 371D. Vessels

    暴力+胡乱优化就过了。。tags给的东西似乎什么都没用到。。。。。CF的数据是不是有点水啊。。。。。果然是没有营养的题目。。。。。

    D. Vessels
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 to n, in the order from the highest to the lowest, the volume of the i-th vessel is ai liters.

     

     

    Initially, all the vessels are empty. In some vessels water is poured. All the water that overflows from the i-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 the pi-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 contains n 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 integer m — the number of queries (1 ≤ m ≤ 2·105). Each of the next m 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 ≤ pin1 ≤ xi ≤ 1091 ≤ kin).

    Output

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

    Sample test(s)
    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
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    
    using namespace std;
    
    int a[320000],v[320000],n,m,s,p,x,next[320000];
    
    int main()
    {
        scanf("%d",&n);
        for(int i=1;i<=n;i++)
        {
            scanf("%d",a+i);
            next[i]=i+1;
        }
        next[n+1]=n+1;
        scanf("%d",&m);
        while(m--)
        {
            scanf("%d",&s);
            if(s==1)
            {
                scanf("%d%d",&p,&x);
                int i,j;
                for(i=p;i<=n;i=next[i])
                {
                    if(v[i]==a[i]) continue;
                    int temp=min(a[i]-v[i],x);
                    v[i]+=temp;
                    x-=temp;
                    if(!x) break;
                }
                if(v[i]==a[i]) i++;
                int t;
                for(j=p;j<i;j=t)
                {
                    t=next[j];
                    next[j]=i;
                }
            }
            else if(s==2)
            {
                scanf("%d",&p);
                printf("%d
    ",v[p]);
            }
        }
        return 0;
    }
    



  • 相关阅读:
    hihoCoder week20 线段树的区间修改
    hihoCoder week19 RMQ问题再临-线段树 单点更新 区间查询
    hihoCoder week17 最近公共祖先·三 lca st表
    hihoCoder week16 RMQ-ST算法
    hihoCoder week15 最近公共祖先·二
    eclipse 分屏显示同一文件
    eclipse 每次以debug方式启动springboot之后都会在SilentExitExceptionHandler类中的throw new SilentExitException()处断开,但是我明明没有下断点啊
    eclipse alt+/智能提示错误问题
    SpringBoot 之 普通类获取Spring容器中的bean
    kafka常用命令
  • 原文地址:https://www.cnblogs.com/fuhaots2009/p/3469214.html
Copyright © 2011-2022 走看看