当前位置: 首页 > article >正文

E. Alternating String

E. Alternating String

这道题就是前缀和的变化, 现在做起来比较简单, 打这场的时候差了点时间就做出来了

 代码

#include <bits/stdc++.h>
#define int long long
using namespace std;

const int N = 200010;

int od[N][30], ev[N][30];
int n;

void init()
{
	for(int i = 0; i <= n; i ++ )
	{
		for(int j = 1; j <= 26; j ++ )
		{
			od[i][j] = 0;
			ev[i][j] = 0;
		}
	}
}

void solve()
{
	string s;
	cin >> n;
	init();
	cin >> s;
	
	for(int i = 1; i <= n; i ++ )
	{
		if(i % 2 == 0) ev[i][s[i - 1] - 'a' + 1] = 1;
		else od[i][s[i - 1] - 'a' + 1] = 1;
		
		for(int j = 1; j <= 26; j ++ )
		{
			od[i][j] += od[i - 1][j];
			ev[i][j] += ev[i - 1][j];
		}
		
	}

	if(n % 2 == 0)
	{
		int maxx1 = 0, maxx2 = 0;
		
		for(int i = 1; i <= 26; i ++ )
		{
			maxx1 = max(maxx1, od[n][i]);
			maxx2 = max(maxx2, ev[n][i]);
		}
		
		cout << n - maxx1 - maxx2 << endl;
		return;
	}
	
	int maxx = 0;
	for(int i = 1; i <= n; i ++ )
	{
		int maxx1 = 0, maxx2 = 0;
		for(int j = 1; j <= 26; j ++ )
		{
			maxx1 = max(maxx1, od[i - 1][j] + ev[n][j] - ev[i][j]);
			maxx2 = max(maxx2, ev[i - 1][j] + od[n][j] - od[i][j]);
		}
		maxx = max(maxx, maxx1 + maxx2);
	}
	cout << n - maxx << endl;
}

signed main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	int T;
	cin >> T;
	while (T -- )
	{
		solve();
	}
}


http://www.kler.cn/a/321325.html

相关文章:

  • 力扣 LeetCode 541. 反转字符串II(Day4:字符串)
  • MySQL查询某个数据库中特定表的空间占用大小
  • 怎么选择香港服务器的线路?解决方案
  • PHP反序列化_3-漏洞利用
  • [宁波24届]平方数
  • C++ 并发专题 - 自旋锁的实现(Spinlock)
  • AWS上迁移WordPress遭遇若干问题记处理办法
  • 皮肤病检测-目标检测数据集(包括VOC格式、YOLO格式)
  • 使用离火插件yoloV8数据标注,模型训练
  • @SuppressWarnings注解
  • 著名建筑物检测与识别系统源码分享
  • Java线程池和原子性
  • 『功能项目』宠物的攻击巨型化【80】
  • 人力资源数据集分析(二)_随机森林与逻辑回归
  • JavaScript 学习
  • composer详解
  • day3 QT
  • 数据仓库-数据命名标准规范
  • Android入门
  • 【Vue】Vue3 的初始化过程
  • React Native实现推送通知
  • 免费使用!通过API将文字转换为拼音
  • 15分钟学Python 第22天 :继承与多态
  • 铨顺宏科技携RTLS+RFID技术亮相工博会!
  • Python--循环
  • 数组组成的最小数字 - 华为OD统一考试(E卷)