zoukankan      html  css  js  c++  java
  • CodeForces 508C Anya and Ghosts

     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 3
    10
    Output
    3
    Input
    2 10 1
    5 8
    Output
    1
    Input
    1 1 3
    10
    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.

     1 #include <stdio.h>
     2 #include <string.h>
     3 
     4 int main()
     5 {
     6     int m,t,r;
     7     int w[305];
     8     int vis[1005],lig[1005];
     9     int i,j,flg,s,k;
    10     while(scanf("%d %d %d",&m,&t,&r)!=EOF)
    11     {
    12         flg=1;s=0;
    13         memset(lig,0,sizeof(lig));
    14         memset(vis,0,sizeof(vis));
    15         for(i=1;i<=m;i++)
    16         {
    17             scanf("%d",&w[i]);
    18         }
    19         if(t<r)
    20         {
    21             flg=0;
    22         }
    23         else
    24         {
    25             s=r;
    26             for(i=w[1]-1;i>=0 && i>=w[1]-r;i--)
    27                 vis[i]=1;
    28             for(i=1;i<=r;i++)
    29             {
    30                 for(j=w[1];j<=w[1]+t-i;j++)
    31                 {
    32                     lig[j]++;
    33                 }
    34             }
    35             for(i=2;i<=m;i++)
    36             {
    37                 if(flg==0)
    38                     break;
    39                 if(lig[w[i]]>=r)
    40                     continue;
    41                 int ww=r-lig[w[i]];
    42                 for(j=w[i]-1;j>=w[i]-ww;j--)
    43                 {
    44                     if(vis[j]==1)
    45                     {
    46                         flg=0;break;
    47                     }
    48                     vis[j]=1;
    49                     s++;
    50                 }
    51                 for(k=1;k<=ww;k++)
    52                 {
    53                     for(j=w[i];j<=w[i]+t-k;j++)
    54                     {
    55                         lig[j]++;
    56                     }
    57                 }
    58             }
    59         }
    60         if(flg==0)
    61             printf("-1
    ");
    62         else
    63             printf("%d
    ",s);
    64     }
    65     return 0;
    66 }
    67 
    68 
    69 
    70 
    71 
    72 
    73             /*for(i=0;i<=20;i++)
    74                 printf("%d ",vis[i]);
    75             printf("
    ");
    76             for(i=0;i<=20;i++)
    77                 printf("%d ",lig[i]);
    78             printf("
    ");*/
    View Code
  • 相关阅读:
    HDU 5528 Count a * b 欧拉函数
    HDU 5534 Partial Tree 完全背包
    HDU 5536 Chip Factory Trie
    HDU 5510 Bazinga KMP
    HDU 4821 String 字符串哈希
    HDU 4814 Golden Radio Base 模拟
    LA 6538 Dinner Coming Soon DP
    HDU 4781 Assignment For Princess 构造
    LA 7056 Colorful Toy Polya定理
    LA 6540 Fibonacci Tree
  • 原文地址:https://www.cnblogs.com/cyd308/p/4771545.html
Copyright © 2011-2022 走看看