zoukankan      html  css  js  c++  java
  • POJ1836Alignment(LCA)

    Alignment
    Time Limit: 1000MS   Memory Limit: 30000K
    Total Submissions: 15135   Accepted: 4911

    Description

    In the army, a platoon is composed by n soldiers. During the morning inspection, the soldiers are aligned in a straight line in front of the captain. The captain is not satisfied with the way his soldiers are aligned; it is true that the soldiers are aligned in order by their code number: 1 , 2 , 3 , . . . , n , but they are not aligned by their height. The captain asks some soldiers to get out of the line, as the soldiers that remain in the line, without changing their places, but getting closer, to form a new line, where each soldier can see by looking lengthwise the line at least one of the line's extremity (left or right). A soldier see an extremity if there isn't any soldiers with a higher or equal height than his height between him and that extremity. 

    Write a program that, knowing the height of each soldier, determines the minimum number of soldiers which have to get out of line. 

    Input

    On the first line of the input is written the number of the soldiers n. On the second line is written a series of n floating numbers with at most 5 digits precision and separated by a space character. The k-th number from this line represents the height of the soldier who has the code k (1 <= k <= n). 

    There are some restrictions: 
    • 2 <= n <= 1000 
    • the height are floating numbers from the interval [0.5, 2.5] 

    Output

    The only line of output will contain the number of the soldiers who have to get out of the line.

    Sample Input

    8
    1.86 1.86 1.30621 2 1.4 1 1.97 2.2
    

    Sample Output

    4

    Source

    题意:一排人排队,要保证向前左或向右看到无穷远处,
    从左找最长递增序列,从右找最长递增序列,然后枚举i,求 i 后面的<= a[i]中最大的那个
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <algorithm>
     4 #include <cstring>
     5 using namespace std;
     6 const int MAX = 1000 + 10;
     7 const double F = 10e-6;
     8 double heigh[MAX];
     9 int dp1[MAX],dp2[MAX];
    10 void LCA(int n)
    11 {
    12     memset(dp1, 0, sizeof(dp1));
    13     dp1[1] = 1;
    14     for(int i = 1; i <= n; i++)
    15     {
    16         int maxn = 0;
    17         for(int j = i - 1; j > 0; j--)
    18         {
    19             if(heigh[i] > heigh[j])
    20             {
    21                 maxn = max(maxn,dp1[j]);
    22             }
    23         }
    24         dp1[i] = max(dp1[i], maxn + 1);
    25     }
    26 }
    27 void LDA(int n)
    28 {
    29     memset(dp2, 0, sizeof(dp2));
    30     dp2[n] = 1;
    31     for(int i = n; i > 0; i--)
    32     {
    33         int maxn = 0;
    34         for(int j = i + 1; j <= n; j++)
    35         {
    36             if(heigh[i] > heigh[j])
    37             {
    38                 maxn = max(maxn, dp2[j]);
    39             }
    40         }
    41         dp2[i] = max(dp2[i], maxn + 1);
    42     }
    43 }
    44 int Cout(int n)
    45 {
    46     int maxn = 0;
    47     for(int i = 1; i <= n; i++)
    48     {
    49         int temp = 0;
    50         for(int j = i + 1; j <= n; j++)
    51         {
    52             if(heigh[i] >= heigh[j])
    53                 temp = max(temp, dp2[j]);
    54         }
    55         maxn = max(maxn, dp1[i] + temp);
    56     }
    57     return n - maxn;
    58 }
    59 int main()
    60 {
    61     int n;
    62     while(scanf("%d", &n) != EOF)
    63     {
    64         for(int i = 1; i <= n; i++)
    65         {
    66             scanf("%lf", &heigh[i]);
    67         }
    68         LCA(n);
    69         LDA(n);
    70         printf("%d
    ",Cout(n));
    71     }
    72     return 0;
    73 }
    View Code
  • 相关阅读:
    Web上传大文件的解决方案
    JS上传大文件的解决方案
    网页上传大文件的解决方案
    B/S上传大文件的解决方案
    Unity UGUI——提供可视功能的UI组件(Text)
    Java设计模式透析之 —— 策略(Strategy)
    【边做项目边学Android】小白会遇到的问题--Appcompat_V7问题
    高度平衡树 -- AVL 树
    成长这事儿,不可不说-------Day36
    Cocos2D-X2.2.3学习笔记5(UI系统)
  • 原文地址:https://www.cnblogs.com/zhaopAC/p/5158873.html
Copyright © 2011-2022 走看看