CF508C.Anya and Ghosts

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Anya loves to watch horror movies. In the best traditions of horror, she will be visited by mm ghosts tonight. Anya has lots of candles prepared for the visits, each candle can produce light for exactly tt seconds. It takes the girl one second to light one candle. More formally, Anya can spend one second to light one candle, then this candle burns for exactly tt seconds and then goes out and can no longer be used.

For each of the mm ghosts Anya knows the time at which it comes: the ii -th visit will happen wiw_{i} seconds after midnight, all wiw_{i} 's are distinct. Each visit lasts exactly one second.

What is the minimum number of candles Anya should use so that during each visit, at least rr candles are burning? Anya can start to light a candle at any time that is integer number of seconds from midnight, possibly, at the time before midnight. That means, she can start to light a candle integer number of seconds before midnight or integer number of seconds after a midnight, or in other words in any integer moment of time.

输入格式

The first line contains three integers mm , tt , rr ( 1<=m,t,r<=3001<=m,t,r<=300 ), representing the number of ghosts to visit Anya, the duration of a candle's burning and the minimum number of candles that should burn during each visit.

The next line contains mm space-separated numbers wiw_{i} ( 1<=i<=m1<=i<=m , 1<=wi<=3001<=w_{i}<=300 ), the ii -th of them repesents at what second after the midnight the ii -th ghost will come. All wiw_{i} 's are distinct, they follow in the strictly increasing order.

输出格式

If it is possible to make at least rr candles burn during each visit, then print the minimum number of candles that Anya needs to light for that.

If that is impossible, print 1-1 .

输入输出样例

  • 输入#1

    1 8 3
    10
    

    输出#1

    3
    
  • 输入#2

    2 10 1
    5 8
    

    输出#2

    1
    
  • 输入#3

    1 1 3
    10
    

    输出#3

    -1
    

说明/提示

Anya can start lighting a candle in the same second with ghost visit. But this candle isn't counted as burning at this visit.

It takes exactly one second to light up a candle and only after that second this candle is considered burning; it means that if Anya starts lighting candle at moment x, candle is buring from second x + 1 to second x + t inclusively.

In the first sample test three candles are enough. For example, Anya can start lighting them at the 33 -rd, 55 -th and 77 -th seconds after the midnight.

In the second sample test one candle is enough. For example, Anya can start lighting it one second before the midnight.

In the third sample test the answer is 1-1 , since during each second at most one candle can burn but Anya needs three candles to light up the room at the moment when the ghost comes.

首页