zoukankan      html  css  js  c++  java
  • Educational Codeforces Round 33 (Rated for Div. 2) D. Credit Card

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

    Recenlty Luba got a credit card and started to use it. Let's consider n consecutive days Luba uses the card.

    She starts with 0 money on her account.

    In the evening of i-th day a transaction ai occurs. If ai > 0, then ai bourles are deposited to Luba's account. If ai < 0, then ai bourles are withdrawn. And if ai = 0, then the amount of money on Luba's account is checked.

    In the morning of any of n days Luba can go to the bank and deposit any positive integer amount of burles to her account. But there is a limitation: the amount of money on the account can never exceed d.

    It can happen that the amount of money goes greater than d by some transaction in the evening. In this case answer will be «-1».

    Luba must not exceed this limit, and also she wants that every day her account is checked (the days when ai = 0) the amount of money on her account is non-negative. It takes a lot of time to go to the bank, so Luba wants to know the minimum number of days she needs to deposit some money to her account (if it is possible to meet all the requirements). Help her!

    Input

    The first line contains two integers nd (1 ≤ n ≤ 105, 1 ≤ d ≤ 109) —the number of days and the money limitation.

    The second line contains n integer numbers a1, a2, ... an ( - 104 ≤ ai ≤ 104), where ai represents the transaction in i-th day.

    Output

    Print -1 if Luba cannot deposit the money to her account in such a way that the requirements are met. Otherwise print the minimum number of days Luba has to deposit money.

    Examples
    input
    5 10
    -1 5 0 -5 3
    output
    0
    input
    3 4
    -10 0 20
    output
    -1
    input
    5 10
    -5 0 10 -11 0
    output
    2

    【题意】:白天存钱,晚上加减,一旦见零,马上非负。钱有上限,最少几存。

    【分析】:

    【代码】:

  • 相关阅读:
    2021.11.20 MapReduce实验
    Linux串口应用编程
    Linux系统中的TTY
    69 进程创建的优化设计 上
    71 键盘驱动程序设计(上)
    有关EXPORT_SYMBOL_GPL
    73 键盘驱动程序设计(下)
    72 键盘驱动程序设计(中)
    本地maven打包无法被导入
    java 8 Stream 递归实现树形结构
  • 原文地址:https://www.cnblogs.com/Roni-i/p/7891101.html
Copyright © 2011-2022 走看看