zoukankan      html  css  js  c++  java
  • POJ 1952 -- BUY LOW, BUY LOWER

    BUY LOW, BUY LOWER
    Time Limit: 1000MS   Memory Limit: 30000K
    Total Submissions: 10369   Accepted: 3611

    Description

    The advice to "buy low" is half the formula to success in the bovine stock market.To be considered a great investor you must also follow this problems' advice: 
                        "Buy low; buy lower"

    Each time you buy a stock, you must purchase it at a lower price than the previous time you bought it. The more times you buy at a lower price than before, the better! Your goal is to see how many times you can continue purchasing at ever lower prices. 

    You will be given the daily selling prices of a stock (positive 16-bit integers) over a period of time. You can choose to buy stock on any of the days. Each time you choose to buy, the price must be strictly lower than the previous time you bought stock. Write a program which identifies which days you should buy stock in order to maximize the number of times you buy. 

    Here is a list of stock prices: 
     Day   1  2  3  4  5  6  7  8  9 10 11 12
    
    Price 68 69 54 64 68 64 70 67 78 62 98 87


    The best investor (by this problem, anyway) can buy at most four times if each purchase is lower then the previous purchase. One four day sequence (there might be others) of acceptable buys is: 
    Day    2  5  6 10
    
    Price 69 68 64 62

    Input

    * Line 1: N (1 <= N <= 5000), the number of days for which stock prices are given 

    * Lines 2..etc: A series of N space-separated integers, ten per line except the final line which might have fewer integers. 

    Output

    Two integers on a single line: 
    * The length of the longest sequence of decreasing prices 
    * The number of sequences that have this length (guaranteed to fit in 31 bits) 

    In counting the number of solutions, two potential solutions are considered the same (and would only count as one solution) if they repeat the same string of decreasing prices, that is, if they "look the same" when the successive prices are compared. Thus, two different sequence of "buy" days could produce the same string of decreasing prices and be counted as only a single solution. 

    Sample Input

    12
    68 69 54 64 68 64 70 67 78 62
    98 87
    

    Sample Output

    4 2
    

    Source

     
    思路:主体部分是最长不下降子序列,但是还要输出有多少种情况。输出情况这部分要注意不重不漏。
     1 #include<cstdio>
     2 #include<cstdlib>
     3 #include<cstring>
     4 #include<cmath>
     5 #include<algorithm>
     6 
     7 using namespace std;
     8 
     9 int n,mxl,ans,a[6000],f[6000],g[6000];   //f[i]储存以 i为结尾的最长不下降子序列;g[i]储存以 i为结尾的最长不下降子序列的个数 
    10 
    11 int main()
    12 {
    13     scanf("%d",&n);
    14     for(int i=1;i<=n;i++)
    15     scanf("%d",&a[i]);
    16     for(int i=1;i<=n;i++)
    17     {
    18             bool flg=false;
    19             for(int j=i-1;j>=1;j--)
    20             {
    21                     if(a[j]==a[i]){flg=true;break;}   //防止重复 (样例中情况 )
    22                     if(a[j]>a[i])
    23                     {
    24                                  if(f[j]+1>f[i])
    25                                  {
    26                                       f[i]=f[j]+1;
    27                                       g[i]=g[j];
    28                                  }
    29                                  else if(f[j]+1==f[i])
    30                                       g[i]+=g[j];
    31                     }
    32             }
    33             if(!flg)f[i]=max(f[i],1),g[i]=max(g[i],1);
    34             mxl=max(mxl,f[i]);
    35     }
    36     for(int i=1;i<=n;i++)
    37     {
    38             if(f[i]==mxl)ans+=g[i];
    39     }
    40     printf("%d %d",mxl,ans);
    41     //system("pause");
    42     return 0;
    43 }
    POJ1952
  • 相关阅读:
    View 和 ViewGroup 的 hasFocusable
    tiny4412学习(四)之移植linux-设备树(1)设备树基础知识及GPIO中断【转】
    tiny4412学习(三)之移植linux-4.x驱动(1)支持网卡驱动【转】
    分享tiny4412,emmc烧录u-boot, 支持fastboot模式烧写emmc【转】
    tiny4412学习(一)之从零搭建linux系统(烧写uboot、内核进emmc+uboot启动内核)【转】
    【总结】嵌入式linux内核中Makefile、Kconfig、.config的关系及增加开机Hello World【转】
    tiny4412 裸机程序 九、串口排查驱动原因及字符图片显示【转】
    tiny4412 裸机程序 八、重定位到DRAM及LCD实验【转】
    tiny4412 裸机程序 七、重定位代码到DRAM【转】
    tiny4412 裸机程序 六、重定位代码到IRAM+0x8000【转】
  • 原文地址:https://www.cnblogs.com/YXY-1211/p/7137859.html
Copyright © 2011-2022 走看看