zoukankan      html  css  js  c++  java
  • cf 822B Crossword solving

    B. Crossword solving
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Erelong Leha was bored by calculating of the greatest common divisor of two factorials. Therefore he decided to solve some crosswords. It's well known that it is a very interesting occupation though it can be very difficult from time to time. In the course of solving one of the crosswords, Leha had to solve a simple task. You are able to do it too, aren't you?

    Leha has two strings s and t. The hacker wants to change the string s at such way, that it can be found in t as a substring. All the changes should be the following: Leha chooses one position in the string s and replaces the symbol in this position with the question mark "?". The hacker is sure that the question mark in comparison can play the role of an arbitrary symbol. For example, if he gets string s="ab?b" as a result, it will appear in t="aabrbb" as a substring.

    Guaranteed that the length of the string s doesn't exceed the length of the string t. Help the hacker to replace in s as few symbols as possible so that the result of the replacements can be found in t as a substring. The symbol "?" should be considered equal to any other symbol.

    Input

    The first line contains two integers n and m (1 ≤ n ≤ m ≤ 1000) — the length of the string s and the length of the string t correspondingly.

    The second line contains n lowercase English letters — string s.

    The third line contains m lowercase English letters — string t.

    Output

    In the first line print single integer k — the minimal number of symbols that need to be replaced.

    In the second line print k distinct integers denoting the positions of symbols in the string s which need to be replaced. Print the positions in any order. If there are several solutions print any of them. The numbering of the positions begins from one.

    Examples
    Input
    3 5
    abc
    xaybz
    Output
    2
    2 3
    Input
    4 10
    abcd
    ebceabazcd
    Output
    1
    2

    暴力搜素 n*m复杂度
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <queue>
    #include <cmath>
    #include <vector>
    #include <algorithm>
    using namespace std;
    typedef long long ll;
    #define lowbit(x) x&(-x)
    #define max(x,y) (x>y?x:y)
    #define min(x,y) (x<y?x:y)
    #define mem(a) (memset(a,0,sizeof(a)))
    const int inf=0x3f3f3f3f;
    int main()
    {
        int n,m,maxn=2000,c=0,id;
        string s,t;
        cin>>n>>m>>s>>t;
        for(int i=0;i<=m-n;i++)
        {
            c=0;
            for(int j=0;j<n;j++)
            {
                if(t[i+j]!=s[j]) c++;//每次循环判断最少不匹配的个数。
            }
            if(c<maxn)
            {
                maxn=c;
                id=i;
            }
        }
        if(maxn==2000) printf("0
    "),0;
        else printf("%d
    ",maxn);
        for(int i=0;i<n;i++)
        {
            if(t[id+i]!=s[i])
                printf("%d ",i+1);
        }
        return 0;
    }
  • 相关阅读:
    洛谷 P1092 虫食算
    2018.3.25校内互测
    洛谷 P2915 [USACO08NOV]奶牛混合起来Mixed Up Cows
    洛谷 P1879 [USACO06NOV]玉米田Corn Fields
    洛谷 P3052 [USACO12MAR]摩天大楼里的奶牛Cows in a Skyscraper
    ZJOI Day 2 游记
    editorial-render A
    BZOJ2904
    BZOJ 1600
    构造脚本语言
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7154588.html
Copyright © 2011-2022 走看看