HDU 5489 Removed Interval

题意:

求序列中切掉连续的L长度后的最长上升序列

思路:

从前到后求一遍LIS,从后往前求一遍LDS,然后枚举切开的位置i,用线段树维护区间最大值,在i~n中找到第一个比a[i - L]大的位置k,用LIS[i - L] + LDS[k]更新答案.

代码

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <fstream>
  4. #include <algorithm>
  5. #include <cmath>
  6. #include <deque>
  7. #include <vector>
  8. #include <queue>
  9. #include <string>
  10. #include <cstring>
  11. #include <map>
  12. #include <stack>
  13. #include <set>
  14. #define eps 1e-8
  15. #define INF 0x3f3f3f3f
  16. #define LL long long
  17. #define MAXN 500005
  18. #define sqr(x) (x) * (x)
  19. using namespace std;
  20. int n, m, s;
  21. int a[MAXN], b[MAXN], c[MAXN];
  22. int f[MAXN], g[MAXN];
  23. int LIS(int n){
  24. int i, k;
  25. k = 1;
  26. c[1] = b[n];
  27. g[n] = 1;
  28. for (i = n - 1; i >= 1; i--){
  29. if (b[i] > c[k]){
  30. c[++k] = b[i];
  31. g[i] = k;
  32. }
  33. else{
  34. int pos = lower_bound(c + 1, c + k + 1, b[i]) - c;
  35. c[pos] = b[i];
  36. g[i] = pos;
  37. }
  38. }
  39. return k;
  40. }
  41. int main()
  42. {
  43. #ifndef ONLINE_JUDGE
  44. freopen("in.txt", "r", stdin);
  45. freopen("out.txt", "w", stdout);
  46. #endif // OPEN_FILE
  47. int T;
  48. scanf("%d", &T);
  49. int cas = 1;
  50. int n, L;
  51. while (T--){
  52. if (cas == 5){
  53. cas = 5;
  54. }
  55. scanf("%d%d", &n, &L);
  56. for (int i = 1; i <= n; i++){
  57. scanf("%d", &a[i]);
  58. b[i] = -a[i];
  59. }
  60. LIS(n);
  61. int ans = 0;
  62. int q = 0;
  63. memset(f, INF, sizeof(f));
  64. for (int i = L + 1; i <= n; i++){
  65. int p = lower_bound(f + 1, f + n + 1, a[i]) - f;
  66. ans = max(ans, p + g[i] - 1);
  67. p = lower_bound(f + 1, f + n + 1, a[i - L]) - f;
  68. f[p] = a[i - L];
  69. q = max(q, p);
  70. }
  71. ans = max(ans, q);
  72. printf("Case #%d: %d\n", cas++, ans);
  73. }
  74. }

2015合肥网络赛 HDU 5489 Removed Interval LIS+线段树(树状数组)的更多相关文章

  1. 2015合肥网络赛 HDU 5492 Find a path 动归

    HDU 5492 Find a path 题意:给你一个矩阵求一个路径使得 最小. 思路: 方法一:数据特别小,直接枚举权值和(n + m - 1) * aver,更新答案. 方法二:用f[i][j] ...

  2. HDU 5489 Removed Interval (LIS变形)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5489 给你n个数,要删去其中连续的L个,问你删去之后的LIS最大是多少? 我们先预处理出以i下标为开头 ...

  3. 2015上海网络赛 HDU 5475 An easy problem 线段树

    题意就不说了 思路:线段树,维护区间乘积.2操作就将要除的点更新为1. #include<iostream> #include<cstdio> #include<cstr ...

  4. hdu 5489——Removed Interval——————【删除一段区间后的LIS】

    Removed Interval Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) ...

  5. 【二分】【最长上升子序列】HDU 5489 Removed Interval (2015 ACM/ICPC Asia Regional Hefei Online)

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5489 题目大意: 一个N(N<=100000)个数的序列,要从中去掉相邻的L个数(去掉整个区间 ...

  6. HDU 5489 Removed Interval 2015 ACM/ICPC Asia Regional Hefei Online (LIS变形)

    定义f[i]表示以i为开头往后的最长上升子序列,d[i]表示以i为结尾的最长上升子序列. 先nlogn算出f[i], 从i-L开始枚举f[i],表示假设i在最终的LIS中,往[0,i-L)里找到满足a ...

  7. 2015上海网络赛 HDU 5478 Can you find it 数学

    HDU 5478 Can you find it 题意略. 思路:先求出n = 1 时候满足条件的(a,b), 最多只有20W对,然后对每一对进行循环节判断即可 #include <iostre ...

  8. HDU 5489 Removed Interval

    题意:求一段序列中删掉L个连续元素后的LIS. 解法:我的想法很复杂= =怎么说呢……首先用nlogn的方法求LIS得到的序列dp的第i项的意义为上升子序列所有长度为i的序列结尾元素的最小值,那么先倒 ...

  9. HDU 5489 Removed Interval (LIS,变形)

    题意: 给出一个n个元素的序列,要求从中删除任一段长度为L的连续子序列,问删除后的LIS是多少?(n<=10w, L<=n ,元素可能为负) 思路: 如果会O(nlogn)求普通LIS的算 ...

随机推荐

  1. [ReactVR] Start a Virtual Reality Project Using the React VR CLI

    We will learn how to set up a React VR project, run the development mode with hot reloading, and tak ...

  2. ADO.NET (二)—— ADO和ADO .NET对照

     ADO.NET (二)-- ADO和ADO .NET对照       我们知道ADO.NET的两大核心组件各自是Data Provider和DataSet.假设说 DataSet是ADO.NET的心 ...

  3. 杭电1596 find the safest road

    find the safest road Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Ot ...

  4. PyCharm基本设置、常用快捷键

    1. 下载安装 PyCharm官方下载地址:  https://www.jetbrains.com/pycharm/download/index.html#section=windows 安装完成后在 ...

  5. ORA-01119、ORA-27040

    SQL> alter tablespace DRSYS add datafile '/ora_data/drsys02.dbf' size 1000m;alter tablespace DRSY ...

  6. string的一些操作

    //str.insert(1, "bbb"); //str.erase(5);//删除5以后的数字 //str.erase(str.begin()+2);//删除某个字符 //co ...

  7. hiho160周 - 字符串压缩,经典dp

    题目链接 小Hi希望压缩一个只包含大写字母'A'-'Z'的字符串.他使用的方法是:如果某个子串 S 连续出现了 X 次,就用'X(S)'来表示.例如AAAAAAAAAABABABCCD可以用10(A) ...

  8. POJ 2386 Lake Counting【BFS】

    题意:给出一个矩形,问有多少块连通的W 当找到W的时候,进行广搜,然后将搜过的W变成点,直到不能再搜,进行下一次广搜,最后搜的次数即为水塘的个数 看的PPT里面讲的是种子填充法. 种子填充算法: 从多 ...

  9. First-class citizen

    In programming language design, a first-class citizen (also type, object, entity, or value) in a giv ...

  10. Concurrency pattern

    In software engineering, concurrency patterns are those types of design patterns that deal with the  ...