【HDU - 5489】Removed Interval(离散化,权值线段树,思维,最长上升子序列)

题干:

Given a sequence of numbers A=a1,a2,…,aNA=a1,a2,…,aN, a subsequence b1,b2,…,bkb1,b2,…,bk of AA is referred as increasing if b1<b2<…<bkb1<b2<…<bk. LY has just learned how to find the longest increasing subsequence (LIS). 
Now that he has to select LL consecutive numbers and remove them from AA for some mysterious reasons. He can choose arbitrary starting position of the selected interval so that the length of the LIS of the remaining numbers is maximized. Can you help him with this problem? 

Input

The first line of input contains a number TT indicating the number of test cases (T≤100T≤100). 
For each test case, the first line consists of two numbers NN and LL as described above (1≤N≤100000,0≤L≤N1≤N≤100000,0≤L≤N). The second line consists of NN integers indicating the sequence. The absolute value of the numbers is no greater than 109109. 
The sum of N over all test cases will not exceed 500000. 

Output

For each test case, output a single line consisting of “Case #X: Y”. XX is the test case number starting from 1. YY is the maximum length of LIS after removing the interval.

Sample Input

2
5 2
1 2 3 4 5
5 3
5 4 3 2 1

Sample Output

Case #1: 3
Case #2: 1

题目大意:

每组样例给出两个整数N和L,然后给你N个数的序列,问删除连续的L个数之后,剩下的数的LIS的长度。

解题报告:

维护两个数组pre[i]和suf[i],分别代表从前往后以i为结尾的LIS和从后往前以i为第一个数的LIS。然后权值线段树维护离散化后的以每个值做开头,一直到结尾的最长LIS长度,然后查询的时候就枚举断点就好了。但是只有后缀的情况在此时会枚举不到,所以要单独枚举一下。但是只有前缀的情况是可以考虑到的不需要特判了。

注意预处理数组的时候需要单独开变量记录长度,因为数组中记录的必须是以当前点为结尾的。

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<stack>
#include<map>
#include<vector>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define FF first
#define SS second
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
typedef pair<int,int> PII;
const int MAX = 1e5 + 5;
int n,L,a[MAX],b[MAX],LEN;
int get(int x) {return lower_bound(b+1,b+LEN+1,x) - b;
}
int suf[MAX],pre[MAX],tmp[MAX];
struct TREE {int l,r,mx;
} tr[MAX<<2];
void pushup(int cur) {tr[cur].mx = max(tr[cur*2].mx,tr[cur*2+1].mx);
}
void build(int l,int r,int cur) {tr[cur].l = l,tr[cur].r = r;tr[cur].mx = 0;if(l == r) return;int m = l+r >>1;build(l,m,cur*2);build(m+1,r,cur*2+1);
}
void update(int tar,int val,int cur) {if(tr[cur].l == tr[cur].r) {tr[cur].mx = max(tr[cur].mx,val);return;} if(tar <= tr[cur*2].r) update(tar,val,cur*2);else update(tar,val,cur*2+1);pushup(cur);
}
int query(int pl,int pr,int cur) {if(pl > pr) return 0;if(pl <= tr[cur].l && pr >= tr[cur].r) return tr[cur].mx;int res = 0;if(pl <= tr[cur*2].r) res = max(res,query(pl,pr,cur*2));if(pr >= tr[cur*2+1].l) res = max(res,query(pl,pr,cur*2+1));return res;
} 
int my_lower_bound(int l,int r,int x) {int ans=r+1,mid;while(l<=r) {mid = l+r >>1;if(tmp[mid] < x) ans = mid,r = mid-1;else l = mid+1; } return ans;
}
int main()
{int T,iCase=0;cin>>T;while(T--) {scanf("%d%d",&n,&L);for(int i = 1; i<=n; i++) scanf("%d",a+i),b[i] = a[i];sort(b+1,b+n+1); LEN = unique(b+1,b+n+1) - b - 1;int len = 0;for(int i = 1; i<=n; i++) {int pos = lower_bound(tmp+1,tmp+len+1,a[i]) - tmp;pre[i] = pos;if(pos > len) len = pos;tmp[pos] = a[i];} suf[n+1] = 0; len = 0;for(int i = n; i>=1; i--) {int pos = my_lower_bound(1,len,a[i]);suf[i] = pos;if(pos > len) len = pos;tmp[pos] = a[i];}build(1,n,1);int ans = 0;for(int i = L+1; i<=n; i++) ans = max(ans,suf[i]);for(int i = n-L; i>=1; i--) {//枚举被删除的数字的起点 ans = max(ans,pre[i]+query(get(a[i])+1,n,1));update(get(a[i+L]),suf[i+L],1);}printf("Case #%d: %d\n",++iCase,ans);}return 0 ;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439773.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Apollo进阶课程㊳丨Apollo平台的快速入门

原文链接&#xff1a;进阶课程㊳丨Apollo平台的快速入门 Apollo是向汽车行业及自动驾驶领域的合作伙伴提供一个开放、完整、安全的软件平台&#xff0c;帮助他们结合车辆和硬件系统&#xff0c;快速搭建一套属于自己的完整的自动驾驶系统。 上周阿波君为大家详细介绍了「进阶课…

一步步编写操作系统 33 利用bios中断0x15子功能0xe820获取内存

咱们先介绍0xE820子功能&#xff0c;这是最灵活的内存获取方式。 bios中断 0x15的子功能0xE820能够获取系统的内存布局&#xff0c;由于系统内存各部分的类型属性不同&#xff0c;bios就按照类型属性来划分这片系统内存&#xff0c;所以这种查询则呈迭代式&#xff0c;每次bio…

16.深度学习练习:Building your Recurrent Neural Network - Step by Step

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/Building your Recurrent Neural Network - Step by Step1 - Forward propagation for the basic Recurrent Neur…

【2019icpc徐州站】Random Access Iterator(概率dp,有坑,tricks)

题干&#xff1a; Recently Kumiko learns to use containers in C standard template library. She likes to use the std::vector very much. It is very convenient for her to do operations like an ordinary array. However, she is concerned about the random-access…

一步步编写操作系统 34 内核利用bios中断获取物理内存大小

接上文&#xff0c;另一个获取内存容量的方法是bios 0x15中断的子功能0xE801。 此方法虽然简单&#xff0c;但功能也不强大&#xff0c;最大只能识别4G内存&#xff0c;不过这对咱们32位地址总线足够了。稍微有点不便的是&#xff0c;此方法检测到的内存是分别存放到两组寄存器…

【HDU - 5777】domino(贪心)

题干&#xff1a; Little White plays a game.There are n pieces of dominoes on the table in a row. He can choose a domino which hasnt fall down for at most k times, let it fall to the left or right. When a domino is toppled, it will knock down the erect dom…

17.深度学习练习:Character level language model - Dinosaurus land

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ 文章目录1 - Problem Statement1.1 - Dataset and Preprocessing1.2 - Overview of the model2 - Building blo…

Apollo进阶课程㊴丨Apollo安装过程概述

原文链接&#xff1a;进阶课程㊴丨Apollo安装过程概述 Apollo是一个自动驾驶的平台&#xff0c;推荐的参考运行环境为&#xff1a;ThinkPAD X240、CPU&#xff1a;i5 、四核 、内存 8G、 硬盘容量40G以上。 上周阿波君为大家详细介绍了「进阶课程㊳丨Apollo平台的快速入门」。 …

【HDU - 6574】Rng(概率,古典概型)

题干&#xff1a; Avin is studying how to synthesize data. Given an integer n, he constructs an interval using the following method: he first generates a integer r between 1 and n (both inclusive) uniform-randomly, and then generates another integer l betw…

UML类图关系(泛化 、继承、实现、依赖、关联、聚合、组合)

继承、实现、依赖、关联、聚合、组合的联系与区别 分别介绍这几种关系&#xff1a; 继承 指的是一个类&#xff08;称为子类、子接口&#xff09;继承另外的一个类&#xff08;称为父类、父接口&#xff09;的功能&#xff0c;并可以增加它自己的新功能的能力&#xff0c;继…

CS231n(1):图片分类笔记与KNN编程作业

声明&#xff1a;本博客笔记部分为CS231n官网笔记&#xff0c;这里对其进行引用&#xff0c;在此表示感谢。 课程官网地址为&#xff1a;http://vision.stanford.edu/teaching/cs231n/syllabus.html 本次课程对应B站教学视频为&#xff1a; https://www.bilibili.com/video/av5…

【HDU - 6557】Justice(思维,模拟,套路,SETset)

题干&#xff1a; On the table there are n weights. On the body of the i-th weight carved a positive integer kiki , indicating that its weight is 12ki12ki gram. Is it possible to divide the n weights into two groups and make sure that the sum of the weight…

Apollo进阶课程㊵丨Azure仿真平台使用

原文链接&#xff1a;进阶课程㊵丨Azure仿真平台使用 Azure是一种灵活和支持互操作的平台&#xff0c;它可以被用来创建云中运行的应用或者通过基于云的特性来加强现有应用。它开放式的架构给开发者提供了Web应用、互联设备的应用、个人电脑、服务器、或者提供最优在线复杂解决…

java 泛型详解-绝对是对泛型方法讲解最详细的,没有之一

对java的泛型特性的了解仅限于表面的浅浅一层&#xff0c;直到在学习设计模式时发现有不了解的用法&#xff0c;才想起详细的记录一下。本文参考java 泛型详解、Java中的泛型方法、 java泛型详解 1. 概述 泛型在java中有很重要的地位&#xff0c;在面向对象编程及各种设计模式…

【HDU - 6558】The Moon(期望dp)

题干&#xff1a; Random Six is a FPS game made by VBI(Various Bug Institution). There is a gift named "Beta Pack". Mr. K wants to get a beta pack. Here is the rule. Step 0. Let initial chance rate qq 2%. Step 1. Player plays a round of the game…

动手学无人驾驶(3):基于激光雷达3D多目标追踪

上一篇博客介绍了无人驾驶中的车辆检测算法&#xff08;YOLO模型&#xff09;&#xff0c;该检测是基于图像进行的2D目标检测。在无人驾驶环境感知传感器中还有另一种重要的传感器&#xff1a;激光雷达。今天就介绍一篇无人驾驶中基于激光雷达目标检测的3D多目标追踪论文&#…

【HDU - 6237】A Simple Stone Game(贪心,思维,素因子分解,数学)

题干&#xff1a; After he has learned how to play Nim game, Bob begins to try another stone game which seems much easier. The game goes like this: one player starts the game with NN piles of stones. There is aiai stones on the iith pile. On one turn, the …

换种方法学操作系统,轻松入门Linux内核

计算机已成为现代人日常工作、学习和生活中必不可少的工具。操作系统是计算机之魂&#xff0c;作为用户使用计算机的接口&#xff0c;它负责调度执行各个用户程序&#xff0c;使计算机完成特定的任务&#xff1b;作为计算机硬件资源的管理者&#xff0c;它负责协调计算机中各类…

Apollo进阶课程㊶丨Apollo实战——本机演示实战

原文链接&#xff1a;进阶课程㊶丨Apollo实战——本机演示实战 Apollo是一个开放的、完整的、安全的平台&#xff0c;将帮助汽车行业及自动驾驶领域的合作伙伴结合车辆和硬件系统&#xff0c;快速搭建一套属于自己的自动驾驶系统。 上周阿波君为大家详细介绍了「进阶课程㊵丨A…

【HDU - 5965】扫雷(dp)

题干&#xff1a; 扫雷游戏是晨晨和小璐特别喜欢的智力游戏&#xff0c;她俩最近沉迷其中无法自拔。 该游戏的界面是一个矩阵&#xff0c;矩阵中有些格子中有一个地雷&#xff0c;其余格子中没有地雷。 游戏中&#xff0c;格子可能处于己知和未知的状态。如果一个己知的格子中…