POJ1836Alignment(LCA)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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\n",Cout(n));
71     }
72     return 0;
73 }
View Code

 

以上是关于POJ1836Alignment(LCA)的主要内容,如果未能解决你的问题,请参考以下文章

[poj 1836] Alignment dp

POJ 1836 Alignment

POJ-1836 Alignment---LIS

POJ 1836-Alignment(DP/LIS变形)

POJ 1836 Alignment(DP max(最长上升子序列 + 最长下降子序列))

POJ 1836 Alignment 最长递增子序列(LIS)的变形