codeforces--C - Anya and Ghosts(贪心+模拟)

来源:互联网 发布:知象 编辑:程序博客网 时间:2024/04/30 20:19
C - Anya and Ghosts

Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

Anya loves to watch horror movies. In the best traditions of horror, she will be visited by m ghosts tonight. Anya has lots of candles prepared for the visits, each candle can produce light for exactly t 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 t seconds and then goes out and can no longer be used.

For each of the m ghosts Anya knows the time at which it comes: the i-th visit will happen wi seconds after midnight, all wi'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 r 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.

Input

The first line contains three integers mtr (1 ≤ 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 m space-separated numbers wi (1 ≤ i ≤ m1 ≤ wi ≤ 300), the i-th of them repesents at what second after the midnight the i-th ghost will come. All wi's are distinct, they follow in the strictly increasing order.

Output

If it is possible to make at least r 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.

Sample Input

Input
1 8 310
Output
3
Input
2 10 15 8
Output
1
Input
1 1 310
Output
-1

Hint

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 3-rd, 5-th and 7-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, 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.

 

题目:给出n个鬼访问的时间,和每个蜡烛可以持续的时间,每次访问最少需要的点燃的蜡烛数。问一共最少需要几个蜡烛。

贪心:由于点蜡烛的时间需要1s,如果每个蜡烛可以持续的时间小于每次访问最少需要的点燃蜡烛数,那么不可能实现,输出-1。否则一定会实现,这时将每个蜡烛的点燃的时间尽量靠近访问的时间,所以,统计第i个访问时点燃的蜡烛,如果少于r,那么要访问的时间开始,向前遍历,找出最近的可以点燃蜡烛的时刻,这样可以保证使用的蜡烛最少。

关键一步是用数组模拟每个时刻正在燃烧的蜡烛数,而且对于时间段和时刻的把握容易出错

注意

1、可以在子夜之前点蜡烛,所以要将时间右移。

2、蜡烛持续的时间t和点燃的时间j的关系为,j时刻点蜡烛,j+1到j+t时刻蜡烛亮着。

#include<cstdio>#include<iostream>using namespace std;int g[1000],ans;int time[1000];int main(){    int n,t,cnt;    cin>>n>>t>>cnt;    for(int i=1;i<=n;i++)        scanf("%d",&g[i]);    if(t<cnt) {cout<<"-1"<<endl;return 0;}    for(int i=1;i<=n;i++)        if(time[g[i]]<cnt){            int tmp=cnt-time[g[i]];            ans+=tmp;            for(int j=g[i]+1;j<=g[i]-tmp+t;j++)time[j]+=tmp;            for(int j=g[i]-tmp+t+1;j<=g[i]+t-1;j++) time[j]+=(--tmp);        }    cout<<ans<<endl;    return 0;}


0 0
原创粉丝点击