zoukankan      html  css  js  c++  java
  • c++之路进阶——hdu3507(Print Article)

      参考博文:http://www.cnblogs.com/ka200812/archive/2012/08/03/2621345.html//讲的真的很好,有个小错误,博客里的num全为sum,像我这种弱渣都听懂了。真心点赞!!!

      

    Print Article

    Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 131072/65536 K (Java/Others)
    Total Submission(s): 7976    Accepted Submission(s): 2471


    Problem Description
    Zero has an old printer that doesn't work well sometimes. As it is antique, he still like to use it to print articles. But it is too old to work for a long time and it will certainly wear and tear, so Zero use a cost to evaluate this degree.
    One day Zero want to print an article which has N words, and each word i has a cost Ci to be printed. Also, Zero know that print k words in one line will cost

    M is a const number.
    Now Zero want to know the minimum cost in order to arrange the article perfectly.
     
    Input
    There are many test cases. For each test case, There are two numbers N and M in the first line (0 ≤ n ≤ 500000, 0 ≤ M ≤ 1000). Then, there are N numbers in the next 2 to N + 1 lines. Input are terminated by EOF.
     
    Output
    A single number, meaning the mininum cost to print the article.
     
    Sample Input
    5 5 5 9 5 7 5
     
    Sample Output
    230
     
    Author
     
    Xnozero
     
    Source
    解释:    
     
     题解:
         1,用一个单调队列来维护解集。

         2,假设队列中从头到尾已经有元素a b c。那么当d要入队的时候,我们维护队列的上凸性质,即如果g[d,c]<g[c,b],那么就将c点删除。直到找到g[d,x]>=g[x,y]为止,并将d点加入在           该位置中。 

         3,求解时候,从队头开始,如果已有元素a b c,当i点要求解时,如果g[b,a]<sum[i],那么说明b点比a点更优,a点可以排除,于是a出队。最后dp[i]=getDp(q[head])。

      代码:
           
     1 #include<cstdio>
     2 #include<cmath>
     3 #include<iostream>
     4 #define maxn 500100
     5 
     6 using namespace std;
     7 
     8 struct get
     9     {
    10         int n,m,sum[maxn],a[maxn],dp[maxn],q[maxn];
    11         int getup(int j,int k){return dp[j]+sum[j]*sum[j]-dp[k]-sum[k]*sum[k];}//分子 
    12         int getdown(int j,int k){return 2*sum[j]-2*sum[k];}//分母 
    13         int getdp(int i,int j) {return dp[j]+m+(sum[i]-sum[j])*(sum[i]-sum[j]);}//dp[i]
    14         get()
    15            {
    16                 while (scanf("%d%d",&n,&m)==2)
    17                   {
    18                          for(int i=1;i<=n;i++) scanf("%d",&sum[i]);       
    19                    sum[0]=dp[0]=0;         
    20                    for(int i=1;i<=n;i++)sum[i]+=sum[i-1];
    21                         int  t=0,w=1;
    22                         for (int i=1;i<=n;i++)
    23                             {
    24                                    while (t+1<w&&sum[i]*getdown(q[t+1],q[t])>=getup(q[t+1],q[t])) t++;//维护队列,删除就点之前所有点
    25                                    dp[i]=getdp(i,q[t]);
    26                                    while (t+1<w&&getup(i,q[w-1])*getdown(q[w-1],q[w-2])<=getup(q[w-1],q[w-2])*getdown(i,q[w-1])) w--;//维护队列,保证队列具有 上凸性质。
    27                                     q[w++]=i;
    28                             }
    29                   printf("%d
    ",dp[n]);            
    30                   }
    31             }   
    32     }get;
    33 int main()
    34   {
    35       get;
    36     return 0;      
    37   }
     顺便吐槽一下,

    Presentation Error 这种错误你们见过么?我也是醉了!

    Recommend
    zhengfeng   |   We have carefully selected several similar problems for you:  3506 3501 3504 3505 3498 
     
  • 相关阅读:
    51nod 1494 选举拉票 | 线段树
    51nod 1295 XOR key | 可持久化Trie树
    Codeforces 438D (今日gg模拟第二题) | 线段树 考察时间复杂度的计算 -_-|||
    51nod 1563 坐标轴上的最大团(今日gg模拟第一题) | 线段覆盖 贪心 思维题
    良心的可持久化线段树教程
    51nod 1593 公园晨跑 | ST表(线段树?)思维题
    51nod 1595 回文度 | 马拉车Manacher DP
    51nod 1522 上下序列
    胡小兔的OI日志3 完结版
    51nod 1510 最小化序列 | DP 贪心
  • 原文地址:https://www.cnblogs.com/grhyxzc/p/5155506.html
Copyright © 2011-2022 走看看