CF-269B. Greenhouse Effect 最公共子序列

Posted valk3

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF-269B. Greenhouse Effect 最公共子序列相关的知识,希望对你有一定的参考价值。

B. Greenhouse Effect

题意

给出(n,m),n个整数和浮点数,可以随意移动整数的位置。

问最少移动多少次使得整数为非递减的?

思路

排序,求最长公共子序列就,输出(n-最长公共子序列长度)

代码

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
#include<vector>
#include<map>
#define pb push_back
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
const double eps=1e-6;
const int inf = 0x3f3f3f3f;
const int mod = 1e9+7;
const int N = 5e3+10;

int dp[N][N];
int arr[N],brr[N];
int main()
{
    int n,k;
    scanf("%d%d",&n,&k);
    for(int i=1;i<=n;i++)
    {
        double x;
        scanf("%d%lf",&arr[i],&x);
        brr[i]=arr[i];
    }
    sort(arr+1,arr+1+n);
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=n;j++)
        {
            if(arr[i]==brr[j]) dp[i][j]=dp[i-1][j-1]+1;
            dp[i][j]=max(dp[i][j],max(dp[i-1][j],dp[i][j-1]));
        }
    }
    printf("%d
",n-dp[n][n]);
    return 0;
}

以上是关于CF-269B. Greenhouse Effect 最公共子序列的主要内容,如果未能解决你的问题,请参考以下文章

DTOJ #2596. Greenhouse Growth

maven配置时出现:[ERROR] Error executing Maven. [ERROR] 1 problem was encountered while building the effec

maven配置时出现:[ERROR] Error executing Maven. [ERROR] 1 problem was encountered while building the effec

由于 Firebase 初始化,App Delegate 崩溃

pymsql学习笔记

elementUI中的提示效果