从一列数中筛除尽可能少的数,使得从左往右看这些数是从小到大再从大到小

问题:从一列数中筛除尽可能少的数使得从左往右看,这些数是从小到大再从大到小的(网易)。

解法:这是双端 LIS 问题,用 DP 的思想可解,目标规划函数 max{ b[i] + c[i] }, 其中 b[i] 为从左到右, 0 ~ i 个数之间满足递增的数字个数; c[i] 为从右到左, n-1 ~ i 个数之间满足递增的数字个数。最后结果为 n - max + 1。其中 DP 的时候,可以维护一个 inc[] 数组表示递增数字序列,inc[i] 为从小到大第 i 大的数字,然后在计算 b[i] c[i] 的时候使用二分查找在 inc[] 中找出区间 inc[0] ~ inc[i-1] 中小于 a[i] 的元素个数(low)。
源代码如下:

/** 
* The problem: 
* 从一列数中筛除尽可能少的数使得从左往右看,这些数是从小到大再从大到小的(网易)。 
* use binary search, perhaps you should compile it with -std=c99 
* fairywell 2011 
*/  
#include <stdio.h>  
  
#define MAX_NUM    (1U<<31)  
  
int  
main()  
{  
    int i, n, low, high, mid, max;  
      
    printf("Input how many numbers there are: ");  
    scanf("%d/n", &n);  
    /* a[] holds the numbers, b[i] holds the number of increasing numbers 
    * from a[0] to a[i], c[i] holds the number of increasing numbers 
    * from a[n-1] to a[i] 
    * inc[] holds the increasing numbers 
    * VLA needs c99 features, compile with -stc=c99 
    */  
    double a[n], b[n], c[n], inc[n];  
      
    printf("Please input the numbers:/n");  
    for (i = 0; i < n; ++i) scanf("%lf", &a[i]);  
      
    // update array b from left to right  
    for (i = 0; i < n; ++i) inc[i] = (unsigned) MAX_NUM;  
    //b[0] = 0;  
    for (i = 0; i < n; ++i) {  
        low = 0; high = i;  
        while (low < high) {  
            mid = low + (high-low)*0.5;  
            if (inc[mid] < a[i]) low = mid + 1;  
            else high = mid;  
        }  
        b[i] = low + 1;  
        inc[low] = a[i];  
    }  
      
    // update array c from right to left  
    for (i = 0; i < n; ++i) inc[i] = (unsigned) MAX_NUM;  
    //c[0] = 0;  
    for (i = n-1; i >= 0; --i) {  
        low = 0; high = i;  
        while (low < high) {  
            mid = low + (high-low)*0.5;  
            if (inc[mid] < a[i]) low = mid + 1;  
            else high = mid;  
        }  
        c[i] = low + 1;  
        inc[low] = a[i];  
    }  
      
    max = 0;  
    for (i = 0; i < n; ++i )  
        if (b[i]+c[i] > max) max = b[i] + c[i];  
        printf("%d number(s) should be erased at least./n", n+1-max);  
        return 0;  
}  



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值