zoukankan      html  css  js  c++  java
  • A

    A. Mike and Fax
    time limit per test1 second
    memory limit per test256 megabytes
    inputstandard input
    outputstandard output
    While Mike was walking in the subway, all the stuff in his back-bag dropped on the ground. There were several fax messages among them. He concatenated these strings in some order and now he has string s.

    He is not sure if this is his own back-bag or someone else’s. He remembered that there were exactly k messages in his own bag, each was a palindrome string and all those strings had the same length.

    He asked you to help him and tell him if he has worn his own back-bag. Check if the given string s is a concatenation of k palindromes of the same length.

    Input
    The first line of input contains string s containing lowercase English letters (1 ≤ |s| ≤ 1000).

    The second line contains integer k (1 ≤ k ≤ 1000).

    Output
    Print “YES”(without quotes) if he has worn his own back-bag or “NO”(without quotes) otherwise.

    Examples
    inputCopy
    saba
    2
    outputCopy
    NO
    inputCopy
    saddastavvat
    2
    outputCopy
    YES
    Note
    Palindrome is a string reading the same forward and backward.

    In the second sample, the faxes in his back-bag can be “saddas” and “tavvat”.

    思路:模拟判断回文串题目

    //找回文串题目,难道要用EKMP或者什么鬼manacher??
    
    #include <bits/stdc++.h>
    
    using namespace std;
    
    int check(int s,int e,string &str)
    {
        int flag = 0;
        for(int i = s;i <= e;i++)
        {
            if(str[i] == str[e - (i - s)])
            {
                continue;
            }
            else
            {
                flag = 1;
                break;
            }
        }
        return flag;//1为不回文,0为回文。
    }
    
    int main()
    {
        string str;
        while(cin>>str)
        {
            int k;
            cin>>k;
            if(str.length() % k)//这个判断暂时搁置
            {
                printf("NO
    ");
                continue;
            }
            int t = str.length() / k;
            int flag = 1;
            for(int i = 0;i < str.length();i += t)
            {
                if(check(i, i + t - 1,str))
                {
                    flag = 0;
                    break;
                }
            }
            if(flag)
                printf("YES
    ");
            else
                printf("NO
    ");
        }
    }
    
  • 相关阅读:
    (1)、Bash的基本功能
    (3)、shell运算符与正则表达式
    中小规模集群搭建之backup服务(rsync守护进程)
    中小规模集群搭建(拓扑)
    asp.net 后台弹出JS提示框或执行JS方法
    MYSQL外键(Foreign Key)的使用
    直接双击页面元素进行修改的HTML代码
    [原创]Centos7 从零编译配置Memcached
    在XHTML中使用Media Player播放媒体文件
    JQuery插件右键菜单
  • 原文地址:https://www.cnblogs.com/tomjobs/p/10612581.html
Copyright © 2011-2022 走看看