码迷,mamicode.com
首页 > 其他好文 > 详细

uvalive 5052

时间:2015-03-30 21:16:46      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:uvalive

题意:有两个a和b的1到n的排列,统计a和b有多少个连续的子序列包含完全相同的整数集,子序列至少包含两个元素。

题解:可以先记录b数组中每个数字的位置,然后枚举a数组的起点和子序列长度,然后用l和r限定范围,初值是a数组起点在b中的位置,因为是连续子序列,如果有更大范围出现就可以更新l和r,如果r - l == len,解的数量加1,。

#include <stdio.h>
#include <math.h>
const int N = 3005;
int n, a[N], b[N], pos[N];

int main() {
	while (scanf("%d", &n) && n) {
		for (int i = 0; i < n; i++)
			scanf("%d", &a[i]);
		for (int i = 0; i < n; i++) {
			scanf("%d", &b[i]);
			pos[b[i]] = i;
		}
		int res = 0, l, r;
		for (int i = 0; i < n; i++) {
			l = pos[a[i]];
			r = pos[a[i]];
			for (int j = 1; j < n - i; j++) {
				if (pos[a[i + j]] < l)
					l = pos[a[i + j]];
				else if (pos[a[i + j]] > r)
					r = pos[a[i + j]];
				if (r - l == j)
					res++;
			}
		}
		printf("%d\n", res);
	}
	return 0;
}


uvalive 5052

标签:uvalive

原文地址:http://blog.csdn.net/hyczms/article/details/44755695

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!