[模拟] aw3697. 回文子序列(模拟+读入坑点)
Posted Ypuyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[模拟] aw3697. 回文子序列(模拟+读入坑点)相关的知识,希望对你有一定的参考价值。
1. 题目来源
链接:3697. 回文子序列
2. 题目解析
注意,本题是子序列,不是子串。
只需要找到两个相同元素,中间随便再选一个就行了。就是这么简单。
多组数据,中间找到结果就 break
掉了,然后后面接着读上组数据中没读到的部分,人傻了啊…
时间复杂度: O ( n ) O(n) O(n)
空间复杂度: O ( n ) O(n) O(n)
AC 代码:
#include <bits/stdc++.h>
using namespace std;
const int N = 5005;
int n;
int a[N];
int main() {
int T;
scanf("%d", &T);
while (T -- ) {
scanf("%d", &n);
bool flag = true;
unordered_map<int, int> hs;
for (int i = 0; i < n; i ++ ) {
int x;
scanf("%d", &x);
if (!hs.count(x)) hs[x] = i;
if (i - hs[x] >= 2) flag = false;
}
if (flag) puts("NO");
else puts("YES");
}
return 0;
}
坑点代码:
#include <bits/stdc++.h>
using namespace std;
const int N = 5005;
int n;
int a[N];
int main() {
int T;
scanf("%d", &T);
while (T -- ) {
scanf("%d", &n);
bool flag = true;
unordered_map<int, int> hs;
for (int i = 0; i < n; i ++ ) {
int x;
scanf("%d", &x);
cout << x << ' ';
if (!hs.count(x)) hs[x] = i;
if (i - hs[x] >= 2) { // woc,必须 cin 完毕这组数据,不要中途 break
puts("YES");
flag = false;
break;
}
}
if (flag) puts("NO");
}
return 0;
}
以上是关于[模拟] aw3697. 回文子序列(模拟+读入坑点)的主要内容,如果未能解决你的问题,请参考以下文章
2021.8.9提高B组模拟1T1 最长公共回文子序列(dfs)