当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3525:Orienteering

题目描述
The Orienteering competition is coming soon!Now there are N players to participate in,each has his own cheering squad (lala dui) ,In order to ensure order and security competition,Each player's cheering squad can only send 2*M beautiful mm ,M mm from North Campus,M mm from South Campus(as known that HNU consists of South Campus and North Campus)。
In order to facilitate management , the mm from the same Campus must stay at the same side of the road which means there are two Sequences and each Sequence has equal number of mm .The day of the race,each side has many positions starting from the finishing line toward the starting line numbered for the 1,2,3. . . . up to 2*n*m positions,every mm has her own favorite position,however, when she finds her favorite position is occupied by other students, she has to go to the next position, until she finds a empty position(the cost time of this process is negligible)。
For example, there is a mm whose favorite position is 3,when she goes to the position 3,there has a people over there,so she goes to the next position 4,however ,still has a people there ,until she gets the position 6 where no one occupies this position at present,so she`s position is 6,when all the people find their positions ,the teacher for the competition comes ,he finds that there are still some empty positions ,then he orders that all people move closer to the finishing line which can not change the relative positions of each mm at the both side,so finally their positon number is from 1 to n*m,now we get two sequence A,B A[i] means the mm on the ith position of this side support the player A[i],B[i] means the mm on the ith position of the opposite side support the player B[i].
Now the teacher has Picking a speaker , the mm supporting different players must wear different clothes, but those who support the same player should wear the same clothes. In order to make the venue more harmonious visual effect,to choose two sequence (A[c[1]],A[c[2]],......A[c[len]]) (B[d[1]],B[d[2]],.....B[d[len]]),A[c[i]]=B[d[i]] (1=i<=len) The teacher want to know the max len,can you help us?Namely, you should find the max len such that there exists two identical subsequence with len elements in A and B respectively(these two subsequence need not to be continuous).
输入解释
The first line of input should give the number of cases, T (at most 20).the first line of each case has two numbers n,m(1<=n<=10000,1<=m<=10)n represent the number of players,numbers from 1 to n ,m represent the number of mm of each player`s cheering squad,The next two lines,each with n*m*2 numbers,the i*2-1 number means the ith mm`s supported player number v[i](1<=v[i]<=n),the i*2 number means the ith mm`s faviourite positionw[i](1<=w[i]<=m*n), we set the mm number i is earlier than the mm number j when (i<j).
输出解释
For each case, output should be one line containing "Case #x: ",then flollow a number ,the max len.
输入样例
1
3 2
1 3 1 4 3 2 2 5 2 2 3 1
3 1 1 4 2 2 3 1 2 4 1 3
输出样例
Case #1: 4

提示
 After the operation the A sequence is: 3 3 1 1 2 2 While The  B sequence is : 3 2 3 1 2 1 The most longest common sequence is 3 3 1 1 so the len is 4.
来自杭电HDUOJ的附加信息
Recommend zhengfeng

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-3525

最后修改于 2020-10-25T23:04:26+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
8000/4000MS(Java/Others) 65536/32768K(Java/Others)