Codeforces Round #621 (Div. 1 + Div. 2) C. Cow and Message

Posted TURNINING

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #621 (Div. 1 + Div. 2) C. Cow and Message相关的知识,希望对你有一定的参考价值。

传送门

题目要求子串最大的数目是多少,且要求下标满足等差数列。(英语不好的我第一次写硬是没看出来那几个单词是等差数列的意思)

很明显,当我们选择的字串长度为1 or 2时,我们不用考略等差数列的要求。当长度大于2时一定得先构建长度为2的字串且还要增加限制,所以数量一定会变小。

#include<bits/stdc++.h>
using namespace std;
 
#define de(x) cout << #x << " == " << x << endl
 
typedef long long LL;         
typedef pair<int, int> P;
 
const int maxn = 1e5 + 10;        
const int M_MAX = 50000 + 10;
const int mod = 1e9;
const int INF = 0x3f3f3f3f;    
const double eps = 1e-6;      

LL dp[30][30], cnt[30];

void solve() {
    string s; 
    cin >> s;
    int sz = s.size();
    for(int i = 0; i < sz; i++) {
        for(int j = 0; j < 26; j++) {
            dp[j][s[i]-'a'] += cnt[j];
        }
        cnt[s[i]-'a']++;
    }
    LL res = 0;
    for(int i = 0; i < 26; i++) res = max(res, cnt[i]);
    for(int i = 0; i < 26; i++) {
        for(int j = 0; j < 26; j++) {
            res = max(res, dp[j][i]);
        }
    } 
    cout << res << endl;
}
 
int main() {
    ios::sync_with_stdio(false);
    //srand(time(NULL));    //更新种子
    solve();
    return 0;
}  

以上是关于Codeforces Round #621 (Div. 1 + Div. 2) C. Cow and Message的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #621 (Div. 1 + Div. 2) 题解

Codeforces Round #621 (Div. 1 + Div. 2)D dij(思维)

Codeforces Round #621 (Div. 1 + Div. 2)A-C简单记录

Codeforces Round #621 (Div. 1 + Div. 2) D

Codeforces Round #621 (Div. 1 + Div. 2).D. Cow and Fields

Codeforces Round #621 (Div. 1 + Div. 2)B Cow and Friend