码迷,mamicode.com
首页 > 其他好文 > 详细

luogu P1091 合唱队形

时间:2019-02-05 17:00:09      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:ima   color   info   mic   class   pre   namespace   开始   code   

任务计划推了很久才做www

技术图片

技术图片

从两头开始的单调上升队列

没啥可说的

#include<cstdio>
#include<algorithm>
using namespace std;
#define maxn 110

int a[maxn];
int f[2][maxn];
int ans;

int main() {
    int n;
    scanf("%d",&n);
    for(int i = 1; i <= n; i++)
        scanf("%d",&a[i]);
    a[0] = a[n + 1] = 0;
    for(int i = 1; i <= n; i++)
        for(int j = 0; j < i; j++)
            if(a[i] > a[j])
                f[0][i] = max(f[0][i],f[0][j] + 1);
    for(int i = n; i >= 1; i--)
        for(int j = n + 1; j > i; j--)
            if(a[i] > a[j])
                f[1][i] = max(f[1][i],f[1][j] + 1);
    for(int i = 1; i <= n; i++)
        ans = max(ans,f[0][i] + f[1][i] - 1);
    printf("%d",n - ans);
    return 0;
}

 

luogu P1091 合唱队形

标签:ima   color   info   mic   class   pre   namespace   开始   code   

原文地址:https://www.cnblogs.com/sevenyuanluo/p/10352829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!