Codeforces Round #359 (Div. 2) A. Free Ice Cream 水题

A. Free Ice Cream

题目连接:

http://www.codeforces.com/contest/686/problem/A

Description

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.

Sample Input

5 7

  • 5
  • 10
  • 20
  • 40
  • 20

Sample Output

22 1

Hint

题意

有n个事件,你一开始有x个冰淇淋

如果事件为+ x的话,那么就是你的冰淇淋增加x

如果事件为- x的话,表示有个孩子来买x个冰淇淋,那么冰淇淋-=x,如果不够的话,就不减,反而增加一个坏孩子的数量

问你最后剩多少冰淇淋,以及坏孩子的数量是多少

题解:

水题

代码

#include<bits/stdc++.h>
using namespace std;

int n;
long long x;
string op;
int p;
int main()
{
    scanf("%d%lld",&n,&x);
    int ans=0;
    for(int i=1;i<=n;i++){
        cin>>op>>p;
        if(op=="+"){
            x+=p;
        }
        else{
            if(x>=p)x-=p;
            else ans++;
        }
    }
    cout<<x<<" "<<ans<<endl;
}
    原文作者:qscqesze
    原文地址: https://www.cnblogs.com/qscqesze/p/5615831.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞