CodeForces 822B Crossword solving
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 822B Crossword solving相关的知识,希望对你有一定的参考价值。
题目链接:http://codeforces.com/contest/822/problem/B
题意:给你两个字符串s和t,问你最少把s中的几个字符变成?,才会使得s是t的子串,其实也就是相当于最少替换几个s的字符,使得s为t的子串,让你输出替换的个数和位置
解析:直接枚举每一个位置,整段比较下,然后维护下最小值就可以了
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e3+100;
const int inf = 0x3f3f3f3f;
char s[maxn],t[maxn];
int main(void)
int n,m;
scanf("%d %d",&n,&m);
scanf("%s %s",s,t);
vector<int>ans;
vector<int>tmp;
int mi = inf;
for(int i=0;i<=m-n;i++)
for(int j=0;j<n;j++)
if(s[j]!=t[i+j])
tmp.push_back(j+1);
if((int)tmp.size()<mi)
mi = tmp.size();
ans = tmp;
tmp.clear();
printf("%d\\n",mi);
for(unsigned i = 0;i<ans.size();i++)
printf("%d ",ans[i]);
puts("");
return 0;
以上是关于CodeForces 822B Crossword solving的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces 1194F. Crossword Expert