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 }
  • 相关阅读:
    python 基础到字符串学习
    Newtonsoft.Json 获取匿名类数据
    Abp Wcf结合使用问题
    Ef Migration 操作出现SQLEXPRESS
    No context type was found in the assembly 'xxx.xxxx'. CodeFirst Ef错误
    Ef Code First 发生”provider: SQL Network Interfaces, error: 26
    ef 多条数据插入处理方案(据说还有更好的)
    记录一次 HttpWebRequest 尝试自动重定向太多 错误
    NetCore 下使用RSA加密,解密;并且前端使用jsencrypt.js实现Rsa相关方法。
    The specified framework version '2.0' could not be parsed 错误处理
  • 原文地址:https://www.cnblogs.com/xingkongyihao/p/7345326.html
Copyright © 2011-2022 走看看