题目大意:

As a token of his gratitude, Takahashi has decided to give Snuke a level-KK palindrome. A level-LL palindrome, where LL is a non-negative integer, is defined as follows:

  • Let rev(s)rev(s) denote the reversal of a string ss.
  • A string ss is said to be a palindrome when s=rev(s)s=rev(s).
  • The empty string and a string that is not a palindrome are level-00 palindromes.
  • For any non-empty level-(L−1)(L−1) palindrome tt, the concatenation of t,rev(t)t,rev(t) in this order is a level-LL palindrome.
  • For any level-(L−1)(L−1) palindrome tt and any character cc, the concatenation of t,c,rev(t)t,c,rev(t) in this order is a level-LL palindrome.

Now, Takahashi has a string SS. Determine whether it is possible to make SS an exactly level-KK palindrome by doing the following action zero or more times: choose a character in SS and change it to another lowercase English letter. If it is possible, find the minimum number of changes needed to make SS a level-KK palindrome.

(自己翻译去)

题目思路:

粗略分析:

通过“最少改变”这个关键词,我们不难想到贪心算法。

对于本道题,我们的贪心策略是:
找到字母相同的位置,用桶统计这个集合中每个字母出现的次数。

找到出现最多和次多的字母及最多出现的个数,

并将集合中的字母全部变成出现最多的那个字母,

同时统计答案。

问题细化:

Q1:如何找到必须相同的字母的位置?

A:使用分治算法,并用并查集来维护这个集合(并查集在替换操作上还有用处)

Q2:impossible情况

①k太大(大概是k>=20)

②len=pow(2,k)

③len<pow(2,k-1)

Q3:特殊判断!

1)替换后的字符串有更深层的回文。

这个时候记录下的次多的字母个数就有用处了。只需要掉一个非后回文串中心的字母就可以了。(要比较找最优方法)

并查集的性质也可以保证每个集合的总祖先是连续的处于字符串的头部的。非常方便进行替换操作。

2)特判:长度唯一的字符串回文深度为1

code:

#include<bits/stdc++.h>
using namespace std;
const int N=5e5+5;
int k;
string s;
int ans=0;
int b[N][30];//桶
int maxn[N];//最大
int emaxn[N];//次大
int bel[N];//最小的子字符串中的字母
int f[N];//并查集
vector<int> res;//存最小子字符串的下标 int find(int x)//找祖先
{
if(f[x]==x) return x;
return f[x]=find(f[x]);
} void h(int x,int y)//认祖先
{
f[find(x)]=find(y);
return ;
} void dfs(int l,int r,int lev){//二分
if(lev==k) return ;
int len=(r-l+1);
if(len%2==1){
dfs(l,l+len/2-1,lev+1);dfs(l+len/2+1,r,lev+1);
}
if(len%2==0){
dfs(l,l+len/2-1,lev+1);dfs(l+len/2,r,lev+1);
}int mid=(l+r)/2;//奇回文串和偶回文串需要分开讨论
for(int i=0;r-i>=mid;i++) h(r-i,l+i);//建立集合
return ;
} bool judge(int len){//判断是否为回文串
for(int i=1;i<=len;i++) if(bel[i]!=bel[len-i+1]){return true;}
return false;
} int main(){
cin>>k>>s;
int len=s.size();
s=" "+s;
if(k>=20||len/(1<<k)==1||len<(1<<(k-1))){puts("impossible");return 0;}//无解的判断 for(int i=1;i<=len;i++) f[i]=i;//并查集初始化 int dip=k;
int anslen=len;//anslen表示最小子串的长度 while(dip--){
anslen/=2;//计算最小子串的长度
} dfs(1,len,0);//二分
for(int i=1;i<=len;i++){
b[find(i)][s[i]-'a']++;
if(find(i)==i) res.push_back(i);//res存的是一个完整的最小子串
} int sum=res.size(); for(int i=0;i<sum;i++){
int x=res[i];
for(int j=0;j<26;j++){
if(b[x][j]>maxn[x]) {emaxn[x]=maxn[x];maxn[x]=b[x][j];bel[x]=j;}
else emaxn[x]=max(emaxn[x],b[x][j]);//找最大和找次大
}
} for(int i=0;i<sum;i++) ans+=maxn[res[i]];//统计ans if(!anslen){cout<<len-ans;return 0;}//最小子串长度为1的特判
if(!judge(anslen)){//包含更深的回文
int minn=12345678;
for(int i=1;i<=anslen;i++){
if(anslen%2==1&&i==anslen/2+1) continue;
minn=min(minn,maxn[i]-emaxn[i]);//寻找最佳替换方案
}
ans-=minn;
}
cout<<len-ans;
return 0;
}

E - Level K Palindrome的更多相关文章

  1. 【LeetCode】1400. 构造 K 个回文字符串 Construct K Palindrome Strings

    作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 统计奇数字符出现次数 日期 题目地址:https:// ...

  2. uva 122 trees on the level——yhx

    题目如下:Given a sequence of binary trees, you are to write a program that prints a level-order traversa ...

  3. 链表之求链表倒数第k个节点

    题目描述:输入一个单向链表,输出该链表中倒数第k个节点,链表的倒数第0个节点为链表的尾指针. 最普遍的方法是,先统计单链表中结点的个数,然后再找到第(n-k)个结点.注意链表为空,k为0,k为1,k大 ...

  4. E - Trees on the level

     Trees on the level  Background Trees are fundamental in many branches of computer science. Current ...

  5. 1101-Trees on the Level

    描述 Trees are fundamental in many branches of computer science. Current state-of-the art parallel com ...

  6. 设计一个算法,求非空二叉树中指定的第k层(k&gt;1)的叶子节点的个数

    思想:採用基于层序遍历的方法. 用level扫描各层节点,若某一层的节点出队后.rear指向该层中最右节点.则将rear赋值给last(对于第一层.last=1).在出队时,若front=last,表 ...

  7. UVA122-Trees on the level(链二叉树)

    Trees on the level Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Sub ...

  8. Trees on the level(指针法和非指针法构造二叉树)

    Trees on the level Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Other ...

  9. hdu 1622 Trees on the level(二叉树的层次遍历)

    题目链接:https://vjudge.net/contest/209862#problem/B 题目大意: Trees on the level Time Limit: 2000/1000 MS ( ...

随机推荐

  1. docker 上传到docker hub 采坑

    前面是仓库名称 后面可以命名img名字 docker push gaodi2345/wj:docker_gui

  2. 【Arduino学习笔记05】Arduino数字输入、输出和脉冲宽带调制 -- 小项目:彩色小台灯

    基本功能: 长按控制按钮开机,长按控制按钮关机(>3s) 通过三个调节按钮调节灯的颜色,每一个按钮分别对应R,G,B值 模式切换:短按控制按钮切换模式(长亮模式/闪烁模式) 元器件清单: Ard ...

  3. Linux下基础命令

      (1)ls(查看列表) (2)ls  -l(查看列出文件详细信息) (3)ls  -al (查看全部列出文件详细信息) (4)ls  -dl(查看目录信息) (5)pwd(查看当前工作的目录)   ...

  4. 【Azure Developer】Python 获取Micrisoft Graph API资源的Access Token, 并调用Microsoft Graph API servicePrincipals接口获取应用ID

    问题描述 在Azure开发中,我们时常面临获取Authorization问题,需要使用代码获取到Access Token后,在调用对应的API,如servicePrincipals接口. 如果是直接调 ...

  5. 安全框架Drozer安装和简单使用

    安全框架Drozer安装和简单使用 说明: drozer(即以前的Mercury)是一个开源的Android安全测试框架 drozer不是什么新工具,但确实很实用,网上的资料教程都很多了,最近自己项目 ...

  6. 绿色物流-智慧仓储监控管理 3D 可视化系统

    前言 随着电子商务产业的迅速发展,快递爆仓已成为了困扰仓储物流的一大难题.大量的碎片化订单,传统仓储管理和运作方式已无法满足,加速仓储物流管理的智能化.自动化升级创新,延伸而出的智慧物流概念成为物流行 ...

  7. Sequelize 和 MySQL 对照Sequelize 和 MySQL 对照

    安装 这篇文章主要使用MySQL.Sequelize.co来进行介绍.安装非常简单: $ npm install --save co $ npm install --save sequelize $ ...

  8. VUE移动端音乐APP学习【四】:scroll组件及loading组件开发

    scroll组件 制作scroll 组件,然后嵌套一个 DOM 节点,使得该节点就能够滚动.该组件中需要引入 BetterScroll 插件. scroll.vue: <template> ...

  9. Hexagon HDU - 6862

    题目链接:https://vjudge.net/problem/HDU-6862 题意: 由六边形组成的圆形图案,要求不重复走遍历每一个小六边形. 思路:https://www.cnblogs.com ...

  10. P1426 小鱼会有危险吗(JAVA语言)

    题目描述 有一次,小鱼要从A处沿直线往右边游,小鱼第一秒可以游7米,从第二秒开始每秒游的距离只有前一秒的98%.有个极其邪恶的猎人在距离A处右边s米的地方,安装了一个隐蔽的探测器,探测器左右x米之内是 ...