#422(div2)B. Crossword solving

Posted 早知如此绊人心,何如当初莫相识。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#422(div2)B. Crossword solving相关的知识,希望对你有一定的参考价值。

题意:给出2个字符串,A,B,A长度严格小于B长度,问改动A多少个字符,能成为B的子串,求最少改动

思路:暴力,2层FOR循环,可用set来存储已B的第i个字符为首需要改动的位置

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 set<int >a[1002];
 5 int main(){
 6     int n,m;
 7     cin>>n>>m;
 8    string s1,s2;
 9    cin>>s1>>s2;
10    int l,sum;
11    int y;
12    int Max=1e9;
13    for(int i=0;i<=m-n;i++){
14         l=i;sum=0;
15 
16         for(int j=0;j<s1.size();j++){
17             if(s1[j]!=s2[l++]) {
18                     sum++;
19 
20                     a[i].insert(j+1);
21             }
22         }
23 
24         if(sum<Max){
25             Max=sum;y=i;
26         }
27    }
28    cout<<Max<<endl;
29    for(set<int >::iterator it=a[y].begin();it!=a[y].end();it++){
30         printf("%d ",*it);
31    }
32    cout<<endl;
33 }

 

以上是关于#422(div2)B. Crossword solving的主要内容,如果未能解决你的问题,请参考以下文章

#422(div2)C. Hacker, pack your bags!

Codeforces 1194F. Crossword Expert

CF #727(div2)B. Love Song,前缀和

#282(div2) B. Modular Equations

CodeForces #362 div2 B. Barnicle

#421(div2)B. Mister B and Angle in Polygon