E - The Contest Educational Codeforces Round 76 (Rated for Div. 2)

A team of three programmers is going to play a contest. The contest consists of n problems, numbered from 1 to n. Each problem is printed on a separate sheet of paper. The participants have decided to divide the problem statements into three parts: the first programmer took some prefix of the statements (some number of first paper sheets), the third contestant took some suffix of the statements (some number of last paper sheets), and the second contestant took all remaining problems. But something went wrong — the statements were printed in the wrong order, so the contestants have received the problems in some random order.
The first contestant has received problems a1,1,a1,2,…,a1,k1
. The second one has received problems a2,1,a2,2,…,a2,k2. The third one has received all remaining problems (a3,1,a3,2,…,a3,k3 ).
The contestants don’t want to play the contest before they redistribute the statements. They want to redistribute them so that the first contestant receives some prefix of the problemset, the third contestant receives some suffix of the problemset, and the second contestant receives all the remaining problems.
During one move, some contestant may give one of their problems to other contestant. What is the minimum number of moves required to redistribute the problems?
It is possible that after redistribution some participant (or even two of them) will not have any problems.
Input
The first line contains three integers k1,k2 and k3 (1≤k1,k2,k3≤2⋅105,k1+k2+k3≤2⋅105) — the number of problems initially taken by the first, the second and the third participant, respectively.
The second line contains k1 integers a1,1,a1,2,…,a1,k1— the problems initially taken by the first participant.The third line contains k2 integers a2,1,a2,2,…,a2,k2— the problems initially taken by the second participant.The fourth line contains k3
integers a3,1,a3,2,…,a3,k3— the problems initially taken by the third participant.It is guaranteed that no problem has been taken by two (or three) participants, and each integer ai,j meets the condition 1≤ai,j≤n, where n=k1+k2+k3
Output
Print one integer — the minimum number of moves required to redistribute the problems so that the first participant gets the prefix of the problemset, the third participant gets the suffix of the problemset, and the second participant gets all of the remaining problems.
Examples
Input
2 1 2
3 1
4
2 5
Output
1
Input
3 2 1
3 2 1
5 4
6
Output
0
Input
2 1 3
5 6
4
1 2 3
Output
3
Input
1 5 1
6
5 1 2 4 7
3
Output
2
Note
In the first example the third contestant should give the problem 2
to the first contestant, so the first contestant has 3 first problems, the third contestant has 1 last problem, and the second contestant has 1 remaining problem.
In the second example the distribution of problems is already valid: the first contestant has 3 first problems, the third contestant has 1 last problem, and the second contestant has 2 remaining problems.
The best course of action in the third example is to give all problems to the third contestant.
The best course of action in the fourth example is to give all problems to the second contestant.

https://blog.csdn.net/caowenbo2311694605/article/details/103061672
参考这位大佬
可以把他抽象为一个单调不降子序列,找到最长的,然后总数减去就行了

#include<iostream>
#include<algorithm>
using namespace std;
int aa[234567];int bb[234567];
int main()
{
	int a,b,c,x;
	cin>>a>>b>>c;
	for(int i=0;i<a;i++) 
	{
		cin>>x;
		aa[x]=1;
	}
	for(int i=0;i<b;i++)
	{
		cin>>x;
		aa[x]=2;
	}
	for(int i=0;i<c;i++)
	{
		cin>>x;
		aa[x]=3;
	}
	int ans=0;
	for(int i=1;i<=a+b+c;i++)
	{
		if(aa[i]>=bb[ans])	bb[++ans]=aa[i];
		else
		{
			int cc=upper_bound(bb,bb+ans,aa[i])-bb;
			bb[cc]=aa[i];
		}
	}
	cout<<a+b+c-ans<<endl;
}
发布了31 篇原创文章 · 获赞 0 · 访问量 328

猜你喜欢

转载自blog.csdn.net/weixin_44828107/article/details/103226872