zoukankan      html  css  js  c++  java
  • Codeforces Round #359 (Div. 2) A

    A. Free Ice Cream
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer.

    At the start of the day they have x ice cream packs. Since the ice cream is free, people start standing in the queue before Kay and Gerda's house even in the night. Each person in the queue wants either to take several ice cream packs for himself and his friends or to give several ice cream packs to Kay and Gerda (carriers that bring ice cream have to stand in the same queue).

    If a carrier with d ice cream packs comes to the house, then Kay and Gerda take all his packs. If a child who wants to take d ice cream packs comes to the house, then Kay and Gerda will give him d packs if they have enough ice cream, otherwise the child will get no ice cream at all and will leave in distress.

    Kay wants to find the amount of ice cream they will have after all people will leave from the queue, and Gerda wants to find the number of distressed kids.

    Input

    The first line contains two space-separated integers n and x (1 ≤ n ≤ 1000, 0 ≤ x ≤ 109).

    Each of the next n lines contains a character '+' or '-', and an integer di, separated by a space (1 ≤ di ≤ 109). Record "+ di" in i-th line means that a carrier with di ice cream packs occupies i-th place from the start of the queue, and record "- di" means that a child who wants to take di packs stands in i-th place.

    Output

    Print two space-separated integers — number of ice cream packs left after all operations, and number of kids that left the house in distress.

    Examples
    Input
    5 7
    + 5
    - 10
    - 20
    + 40
    - 20
    Output
    22 1
    Input
    5 17
    - 16
    - 2
    - 98
    + 100
    - 98
    Output
    3 2
    Note

    Consider the first sample.

    1. Initially Kay and Gerda have 7 packs of ice cream.
    2. Carrier brings 5 more, so now they have 12 packs.
    3. A kid asks for 10 packs and receives them. There are only 2 packs remaining.
    4. Another kid asks for 20 packs. Kay and Gerda do not have them, so the kid goes away distressed.
    5. Carrier bring 40 packs, now Kay and Gerda have 42 packs.
    6. Kid asks for 20 packs and receives them. There are 22 packs remaining.

    题意:初始x个冰淇淋 按照操作符‘+’, ‘-’ 增减  统计最终剩余冰淇淋  和不能满足增减的次数

    题解:水题

     1 #include<bits/stdc++.h>
     2 #include<iostream>
     3 #include<cstring>
     4 #include<cstdio>
     5 #include<algorithm>
     6 #define ll __int64
     7 #define pi acos(-1.0)
     8 using namespace std;
     9 ll n,x,b;
    10 char a;
    11 int main()
    12 {
    13     scanf("%I64d %I64d",&n,&x);
    14     ll sum=x;
    15     ll flag=0;
    16     for(int i=1;i<=n;i++)
    17     {
    18         getchar();
    19         scanf("%c %d",&a,&b);
    20         if(a=='+')
    21         sum+=b;
    22         if(a=='-')
    23         {
    24             if(sum>=b)
    25             sum-=b;
    26             else
    27             flag++;
    28         }    
    29     }
    30     cout<<sum<<" "<<flag<<endl;
    31     return 0;
    32 }
  • 相关阅读:
    hdu 5524 Subtrees 递推
    一些数论函数
    hdu 5480 Conturbatio (前缀和)
    hdu 5479 Scaena Felix (好坑的简单题)
    hdu 5465 Clarke and puzzle(树状数组 或 前缀和 + Nim游戏)
    uva 10534 Wavio Sequence(LIS)
    MFC简单绘制安卓机器人
    解决kubuntu(KDE4.8.5桌面环境)找不到中文语言包
    Windows系统完全退出VMware方法
    【VC6.0】getline需要输入2次回车才会结束的BUG修复方法
  • 原文地址:https://www.cnblogs.com/hsd-/p/5613616.html
Copyright © 2011-2022 走看看