C. LIS or Reverse LIS?

传送门

题意:给你一个长度为n的数组,你可以经过随意的排序,让你求数组前缀和后缀的最长递增子序列  的最小值 的最大值。

思路:因为要求前缀和后缀的最长子序列,

并且后缀数组的最长递增子序列就是原数组的最长递减子序列,显然,这两个最多只

能有一个下标的交集。

那么对于出现超过两次的数字,可以一个放在上升子序列中,一个放在下降子序列中,然后超过两次的数字就可以直接去除。

对于只出现了一次的数,因为上升和下降序列的最多 的公共交集只能为1,那么就加上)出现一次的数 +1)/2为最后的结果。

/**
*  ┏┓   ┏┓+ +
* ┏┛┻━━━┛┻┓ + +
* ┃       ┃
* ┃   ━   ┃ ++ + + +
*  ████━████+
*  ◥██◤ ◥██◤ +
* ┃   ┻   ┃
* ┃       ┃ + +
* ┗━┓   ┏━┛
*   ┃   ┃ + + + +Code is far away from  
*   ┃   ┃ + bug with the animal protecting
*   ┃    ┗━━━┓ 神兽保佑,代码无bug 
*   ┃  	    ┣┓
*    ┃        ┏┛
*     ┗┓┓┏━┳┓┏┛ + + + +
*    ┃┫┫ ┃┫┫
*    ┗┻┛ ┗┻┛+ + + +
*/

#include<cstdio>
#include <iostream>
#include <algorithm>
#include <string.h>
#include <string>
#include <math.h>
#include<vector>
#include<queue>
#include<map>
#define sc_int(x) scanf("%d", &x)
#define sc_ll(x) scanf("%lld", &x)
#define pr_ll(x) printf("%lld", x)
#define pr_ll_n(x) printf("%lld\n", x)
#define pr_int_n(x) printf("%d\n", x)
#define ll long long 
using namespace std;

const int N=1000000+100;
int n ,m,h;
int s[N];

map<int,int>q;

int main()
{
	int t;
	sc_int(t);
	while(t--)
	{
		q.clear();
		cin>>n;

		for(int i =1;i<=n;i++)
		cin>>s[i];

		

		int sum=0,summ=0;
		for(int i =1;i<=n;i++)
		{
			if(!q[s[i]])sum++;
			
			q[s[i]]++;
			if(q[s[i]]==2)
			sum++;
			
		}

		cout<<(sum+1)/2<<endl;


	}

	return 0;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值