1. 首页
  2. 数据库
  3. 其它
  4. Codeforces Round #627 (Div. 3)B. Yet Another Palindrome Problem

Codeforces Round #627 (Div. 3)B. Yet Another Palindrome Problem

上传者: 2021-01-04 05:29:13上传 PDF文件 460KB 热度 14次
B. Yet Another Palindrome Problem 题目链接-B. Yet Another Palindrome Problem 题目大意 给一个长为n(≤5000)的数组,问是否存在一个长度至少为3的子序列是回文的,子序列的数可以不连续但是相对顺序不可变 解题思路 暴力,因为可以不连续,只要找有两位相等的而且不相邻的数即可 附上代码 #include #define int long long #define lowbit(x) (x &(-x)) using namespace std; const int INF=0x3f3f3f3f; const double PI
用户评论