标签: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
原文地址:http://blog.csdn.net/hyczms/article/details/44755695