博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bzoj2213: [Poi2011]Difference(思维题)
阅读量:5170 次
发布时间:2019-06-13

本文共 1989 字,大约阅读时间需要 6 分钟。

     今天颓了一天T T

  这题有两种写法...

  ①预处理出每种字符在原字符串中的位置,枚举两种字符作为最大值和最小值,把这两种字符的坐标归并排序,把最大值设为1,最小值设为-1,求最大子段和。注意因为最小值必须出现一次,所以要记录前缀最小值和次小值,答案只更新最小值出现次数不为0的一个,对于一个字符的出现次数用当前出现次数是否等于前缀最小值出现次数来判断就好了,复杂度O(50N)。

#include
#include
#include
#include
#include
#include
using namespace std;const int maxn=1000010,inf=1e9;int n,ans,cnt;int num[maxn],sum[maxn],last[maxn],pre[maxn],q[maxn];char s[maxn];inline void read(int &k){ int f=1;k=0;char c=getchar(); while(c<'0'||c>'9')c=='-'&&(f=-1),c=getchar(); while(c<='9'&&c>='0')k=k*10+c-'0',c=getchar(); k*=f;}void solve(int x,int y){ int mn1=0,mn2=inf,frt1=0; for(int i=1;i<=cnt;i++) { num[i]=num[i-1]+(s[q[i]]-'a'==y); sum[i]=sum[i-1]+(s[q[i]]-'a'==x?1:-1); if(num[i]==frt1)mn1=min(mn1,sum[i]); else if(sum[i]
0)ans=max(ans,sum[i]-mn1); else ans=max(ans,sum[i]-mn2); }}int main(){ read(n);scanf("%s",s+1); for(int i=1;i<=n;i++)pre[i]=last[s[i]-'a'],last[s[i]-'a']=i; for(int i=0;i<26;i++) for(int j=0;j
l2)q[++cnt]=l1,l1=pre[l1]; else q[++cnt]=l2,l2=pre[l2]; solve(i,j);solve(j,i); } printf("%d\n",ans);}
View Code

  ②对于两个字符计算答案为cnt[r][a]-cnt[l][a]-(cnt[r][b]-cnt[l][b]),可以转化成cnt[r][a]-cnt[r][b]和cnt[l][a]-cnt[l][b],于是我们只要记录一下当前值和前面的最小值,次小值,更新一个前缀y的数量不一样的就好了。因为每移动一格只会更新50个cnt,于是复杂度为O(50N)。

#include
#include
#include
#include
#include
#include
using namespace std;const int maxn=1000010,inf=1e9;int n,ans;int num[27][27],cnt[27],g1[27][27],g2[27][27],f[27][27];char s[maxn];inline void read(int &k){ int f=1;k=0;char c=getchar(); while(c<'0'||c>'9')c=='-'&&(f=-1),c=getchar(); while(c<='9'&&c>='0')k=k*10+c-'0',c=getchar(); k*=f;}void solve(int x,int y){ if(num[x][y]==cnt[y])g1[x][y]=min(g1[x][y],f[x][y]); else if(f[x][y]
View Code

转载于:https://www.cnblogs.com/Sakits/p/7701931.html

你可能感兴趣的文章
体系编程、SOC编程那些事儿
查看>>
mysql索引的艺术
查看>>
IBM RSA 的语言设置
查看>>
《http权威指南》阅读笔记(二)
查看>>
faster r-cnn cudnn版本不兼容问题
查看>>
[置顶] ListBox控件的数据绑定
查看>>
链表插入排序
查看>>
http://blog.csdn.net/yunye114105/article/details/7997041
查看>>
设计模式这个东西 刚刚发现几种模式好像大同小异啊
查看>>
关于 主键和外键
查看>>
python集合的交,差,并,补集合运算汇总
查看>>
校园分期支付的机遇和风险
查看>>
怕忘记-windows 2003服务器安装Node.js NPM
查看>>
一鍵分享(優化后)
查看>>
dcm4che 的依赖无法下载
查看>>
cygwin主要命令
查看>>
多线程存在哪些风险
查看>>
洛谷P2692 覆盖 题解
查看>>
Linux下清理内存和Cache方法见下文:
查看>>
【AngularJs-模块篇-Form篇】
查看>>