zoukankan      html  css  js  c++  java
  • Codeforces Round #422 (Div. 2) B Crossword solving

    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

    问在s字符串中,最少让多少个字符当成'?',才能在t字符串中出现,'?'是可以当任何字符的。
    直接暴力。
    set复制时不能直接=,而是要用迭代器一个一个插入到另一个set中,之前就时直接用=的,然后错在第29组了,改了就没事了。
     1 #include <iostream>
     2 #include <stdio.h>
     3 #include <set>
     4 using namespace std;
     5 const int N = 1010;
     6 char str[N], str1[N];
     7 set<int> st, st1;
     8 set<int> ::iterator it;
     9 int main() {
    10     int n, m, len;
    11     cin >> n >> m;
    12     cin >> str+1 >> str1+1;
    13     for(int j = 1; str[j]; j ++) st1.insert(j);
    14     for(int i = 1; i <= m-n+1; i ++) {
    15         st.clear();
    16         for(int j = 1; j <= n; j ++) {
    17             if(str[j] != str1[j+i-1]) {
    18                 st.insert(j);
    19             }
    20         }
    21         if(st.size() < st1.size()) {
    22             st1.clear();
    23             for(it = st.begin(); it != st.end(); it ++) {
    24                 st1.insert((*it));
    25             }
    26         }
    27     }
    28     printf("%d
    ",len=st1.size());
    29     it = st1.begin();
    30     for(int i = 1; it != st1.end(); ++it, ++i) {
    31         printf("%d%c", (*it), (i == len ?'
    ':' '));
    32     }
    33     return 0;
    34 }
  • 相关阅读:
    [禅悟人生]如春风般吹开他人冬眠的良心
    [禅悟人生]先学做人, 再学做佛
    [禅悟人生]悟得自性则天地开阔
    [禅悟人生]"执著"是自缚的茧
    [禅悟人生]时常自省, 扫却心中尘埃
    [禅悟人生]心不动才能真正认清自己
    [禅悟人生]自卑裹足不前, 就无法成就自己
    [禅悟人生]有自知之明, 在深浅之间权衡做人
    禅悟人生目录
    [禅悟人生]认识自己才能了解外部世界
  • 原文地址:https://www.cnblogs.com/xingkongyihao/p/7345326.html
Copyright © 2011-2022 走看看