Codeforces Round #423 Div. 2 C-String Reconstruction(思维)
Posted Yeader
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #423 Div. 2 C-String Reconstruction(思维)相关的知识,希望对你有一定的参考价值。
题目大意:告诉你n个字符串以及这些字符串在字符串s中出现的位置(x1,x2.....xn),要求在满足上述条件的情况下,求出字典序最小的字符串s。
解题思路:主要问题是,如果直接模拟是会超时的,比如vvvvvvvvvv 3 1 2 3这样就有大量重复(因为题目说了这些字符串位置不会相互矛盾,所以已经有了字符的地方可以不用管了),每次都重复了len-1的长度,如果这段字符串长度为1e6那很容易就超时了。所以这里添加一个pre记录上一次字符串的末尾位置(因为题目说了给出的位置时递增的),每次比较一下开始位置xi和pre+1的大小取较大的为起始的字符添加点。特意画了张丑图:
代码:
1 #include<stdio.h> 2 #include<cstring> 3 const int N=2e6+5; 4 5 char tmp[N]; 6 char s[N]; 7 int idx[N]; 8 9 int max(int a,int b){ 10 return a>b?a:b; 11 } 12 13 int main(){ 14 memset(s,\'#\',sizeof(s)); 15 int n,mlen=-1; 16 scanf("%d",&n); 17 int num=0; 18 for(int i=1;i<=n;i++){ 19 int m,pre=-1;//pre记录上一次字符串的末尾位置 20 scanf("%s %d",tmp,&m); 21 int len=strlen(tmp)-1; 22 while(m--){ 23 int pos,x; 24 scanf("%d",&x); 25 mlen=max(mlen,x+len); 26 pos=max(pre+1,x); 27 for(int j=pos;j<=x+len;j++){ 28 s[j]=tmp[j-pos]; 29 num++; 30 } 31 //存储上一次末尾位置 32 pre=x+len; 33 } 34 } 35 for(int i=1;i<=mlen;i++){ 36 if(s[i]==\'#\') 37 s[i]=\'a\'; 38 } 39 s[mlen+1]=\'\\0\'; 40 printf("%s\\n",s+1); 41 }
以上是关于Codeforces Round #423 Div. 2 C-String Reconstruction(思维)的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #423 (Div. 2) A-C
Codeforces Round #423 (Div. 2) C 思维,并查集 或 线段树 D 树构造,水
Codeforces Round #423 (Div. 2)A B C D
Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals) Problem A - B