【思维构造】Cow and Message—CF1307C

Cow and Message---CF1307C

思路

看清题意!看清题意!看清题意!(重要事情说三遍)

一开始没看清题,以为要求的是所有下标呈等差数列的子串的总数,一直不知道怎么做。

后来看了题解才发现要求的是"所有下标呈等差数列的子串中哪个子串出现的次数最多"。

为了方便,下边称"下标呈等差数列的子串"为"满足条件的子串"。

弄明白了题意,我们现在只需要知道点就能做出来这道题了:满足条件的子串的长度一定是 1 1 1 或 2 2 2。

证明:

假设 s t r str str 是一个满足条件的子串,其中 s t r = a b c d e f g str~=~abcdefg str = abcdefg,那么 s t r str str 出现的次数一定 ≤ \le ≤ " a b " "ab" "ab" 出现的次数。

也就是说,任何一个满长度大于 2 2 2 的满足条件的子串出现的次数一定 ≤ \le ≤ 这个子串的任意一个长度为 2 2 2 的子序列出现的次数,这一点很好理解。原猜想得证。

C o d e Code Code

cpp 复制代码
#include <bits/stdc++.h>
#define int long long
#define sz(a) ((int)a.size())
#define all(a) a.begin(), a.end()
using namespace std;
using PII = pair<int, int>;
using i128 = __int128;
const int N = 2e5 + 10;

int n;

void solve(int Case) {
	string s; cin >> s;
	n = sz(s);
	s = " " + s;
	
	int res = 0;
	vector <int> num(27, 0);
	int ans[27][27] = {0};
	for (int i = 1; i <= n; i ++) {
		int ed = s[i] - 'a' + 1;
		for (int bg = 1; bg <= 26; bg ++) {
			ans[bg][ed] += num[bg];
			res = max(res, ans[bg][ed]);
		}
		num[s[i] - 'a' + 1] ++;
		res = max(res, num[s[i] - 'a' + 1]);
	}
	
	cout << "        ";
	cout << res << "\n";
}

signed main() {
	cin.tie(0)->ios::sync_with_stdio(false);
	int T = 1;
//	cin >> T; cin.get();
	int Case = 0;
	while (++ Case <= T) solve(Case);
	return 0;
}
相关推荐
懒羊羊大王&15 小时前
模版进阶(沉淀中)
c++
owde16 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
GalaxyPokemon16 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi16 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
tadus_zeng17 小时前
Windows C++ 排查死锁
c++·windows
EverestVIP17 小时前
VS中动态库(外部库)导出与使用
开发语言·c++·windows
胡斌附体18 小时前
qt socket编程正确重启tcpServer的姿势
开发语言·c++·qt·socket编程
GalaxyPokemon18 小时前
Muduo网络库实现 [十] - EventLoopThreadPool模块
linux·服务器·网络·c++
守正出琦18 小时前
日期类的实现
数据结构·c++·算法
ChoSeitaku18 小时前
NO.63十六届蓝桥杯备战|基础算法-⼆分答案|木材加工|砍树|跳石头(C++)
c++·算法·蓝桥杯