Prince and Princess
Input: Standard Input

Output: Standard Output

Time Limit: 3 Seconds

In an n x n chessboard, Prince and Princess plays a game. The squares in the chessboard are numbered 1, 2, 3 ... n*n, as shown below:

Prince stands in square 1, make p jumps and finally reach square n*n. He enters a square at most once. So if we use xp to denote the p-th square he enters, then x1, x2, ... xp+1 are all different. Note that x1 = 1 and xp+1 = n*n. Princess does the similar thing - stands in square 1, make q jumps and finally reach square n*n. We use y1, y2 , ... yq+1 to denote the sequence, and all q+1 numbers are different.

Figure 2 belows show a 3x3 square, a possible route for Prince and a different route for Princess.

The Prince moves along the sequence: 1 --> 7 --> 5 --> 4 --> 8 --> 3 --> 9 (Black arrows), while the Princess moves along this sequence: 1 --> 4 --> 3 --> 5 --> 6 --> 2 --> 8 --> 9 (White arrow).

The King -- their father, has just come. "Why move separately? You are brother and sister!" said the King, "Ignore some jumps and make sure that you're always together."

For example, if the Prince ignores his 2nd, 3rd, 6th jump, he'll follow the route: 1 --> 4 --> 8 --> 9. If the Princess ignores her 3rd, 4th, 5th, 6th jump, she'll follow the same route: 1 --> 4 --> 8 --> 9, (The common route is shown in figure 3) thus satisfies the King, shown above. The King wants to know the longest route they can move together, could you tell him?

Input

The first line of the input contains a single integer t(1 <= t <= 10), the number of test cases followed. For each case, the first line contains three integers n, p, q(2 <= n <= 250, 1 <= p, q < n*n). The second line contains p+1 different integers in the range [1..n*n], the sequence of the Prince. The third line contains q+1 different integers in the range [1..n*n], the sequence of the Princess.

Output

For each test case, print the case number and the length of longest route. Look at the output for sample input for details.

 

Sample Input                           Output for Sample Input

1

3 6 7

1 7 5 4 8 3 9

1 4 3 5 6 2 8 9

Case 1: 4


	Problemsetter: Man Rujia Liu Man, Member of Elite Problemsetters' Panel 
	Pictures drawn by Shahriar Manzoor, Member of Elite Problemsetters' Panel

题意:

有2个长度为p+1和q+1的序列,每个序列中的值都是唯一的,求2个序列的最长公共子序列。

思路:

如果做lcs复杂度为n^2,超时。我们队A数组内的元素重新编号,如果B数组中的元素之前在A中没有编号,那么说明这个元素不在A中出现,可以在B中删去

该元素。B元素中的值都有一个编号,并且该编号是根据A数组内元素的位置来给定的,所以现在只要求B数组的LIS。(B中有编号的A中一定出现,并且B中的值表示

这个数在A数组中的位置)

#include<set>
#include<map>
#include<queue>
#include<stack>
#include<cmath>
#include<string>
#include<vector>
#include<cstdio>
#include<time.h>
#include<cstring>
#include<iostream>
#include<algorithm>
#define INF 1000000000
#define MOD 1000000007
#define ll long long
#define lson l,m,rt<<1
#define key_value ch[ch[root][1]][0]
#define rson m+1,r,rt<<1|1
#define pi acos(-1.0)
using namespace std;
const int MAXN = ;
int num[MAXN],b[MAXN],n,q,p;
int g[MAXN];
int main(){
int t,Case = ;
scanf("%d",&t);
while(t--){
scanf("%d%d%d",&n,&q,&p);
memset(num,,sizeof(num));
for(int i = ; i <= q+; i++){
int x;
scanf("%d",&x);
num[x] = i;
}
int cnt = ;
for(int i = ; i <= p+; i++){
int x;
scanf("%d",&x);
if(num[x])b[cnt++] = num[x];
}
int ans = ;
g[] = ;
for(int i = ; i <= cnt; i++)g[i] = INF;
for(int i = ; i < cnt; i++){
int tp = lower_bound(g+,g+cnt+,b[i]) - g;
ans = max(ans,tp);
g[tp] = min(g[tp],b[i]);
}
printf("Case %d: %d\n",++Case,ans);
}
return ;
}

最新文章

  1. SDWebImage源码解读 之 UIImage+GIF
  2. 【leetcode】Triangle (#120)
  3. 常见UI布局之1-2-1单列变宽布局
  4. 快捷键_Mac
  5. org.openqa.selenium.StaleElementReferenceException
  6. Python安装、配置图文详解(转载)
  7. apache LogFormat参数说明
  8. 详解文件操作(ifstream、ofstream、fstream)[转]
  9. java之URL类
  10. ViewPager和SwipeRefreshLayout之间嵌套使用时发生&quot;事件&quot;冲突
  11. express设置ejs并将后缀改为html
  12. html5表单元素详解
  13. MD5加密。
  14. 了解web及网络基础
  15. 【转】MySQL乐观锁在分布式场景下的实践
  16. 2018年—2019年第二学期第四周C#学习个人总结
  17. 使用 ctypes 进行 Python 和 C 的混合编程
  18. MongDB-基础
  19. U3D Invoke系列函数
  20. JAVA 项目中使用 H2 数据库

热门文章

  1. Java多线程整理(li)
  2. Mysql性能优化三(分表、增量备份、还原)
  3. [连载]《C#通讯(串口和网络)框架的设计与实现》- 7.外部接口的设计
  4. 灵活的JavaScript(一)
  5. 负载均衡之LVS集群
  6. iOS 对模型对象进行归档
  7. GridView的各种属性
  8. Xcode 8 日志输出乱码问题
  9. 了解JavaScript 数组对象及其方法
  10. Dapper.NET——轻量ORM