CF747D.Winter Is Coming

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The winter in Berland lasts nn days. For each day we know the forecast for the average air temperature that day.

Vasya has a new set of winter tires which allows him to drive safely no more than kk days at any average air temperature. After kk days of using it (regardless of the temperature of these days) the set of winter tires wears down and cannot be used more. It is not necessary that these kk days form a continuous segment of days.

Before the first winter day Vasya still uses summer tires. It is possible to drive safely on summer tires any number of days when the average air temperature is non-negative. It is impossible to drive on summer tires at days when the average air temperature is negative.

Vasya can change summer tires to winter tires and vice versa at the beginning of any day.

Find the minimum number of times Vasya needs to change summer tires to winter tires and vice versa to drive safely during the winter. At the end of the winter the car can be with any set of tires.

输入格式

The first line contains two positive integers nn and kk ( 1<=n<=21051<=n<=2·10^{5} , 0<=k<=n0<=k<=n ) — the number of winter days and the number of days winter tires can be used. It is allowed to drive on winter tires at any temperature, but no more than kk days in total.

The second line contains a sequence of nn integers t1,t2,...,tnt_{1},t_{2},...,t_{n} ( 20<=ti<=20-20<=t_{i}<=20 ) — the average air temperature in the ii -th winter day.

输出格式

Print the minimum number of times Vasya has to change summer tires to winter tires and vice versa to drive safely during all winter. If it is impossible, print -1.

输入输出样例

  • 输入#1

    4 3
    -5 20 -3 0
    

    输出#1

    2
    
  • 输入#2

    4 2
    -5 20 -3 0
    

    输出#2

    4
    
  • 输入#3

    10 6
    2 -5 1 3 0 0 -4 -3 1 0
    

    输出#3

    3
    

说明/提示

In the first example before the first winter day Vasya should change summer tires to winter tires, use it for three days, and then change winter tires to summer tires because he can drive safely with the winter tires for just three days. Thus, the total number of tires' changes equals two.

In the second example before the first winter day Vasya should change summer tires to winter tires, and then after the first winter day change winter tires to summer tires. After the second day it is necessary to change summer tires to winter tires again, and after the third day it is necessary to change winter tires to summer tires. Thus, the total number of tires' changes equals four.

首页