zoukankan      html  css  js  c++  java
  • codeforces 725/C

    Hidden Word

    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Let’s define a grid to be a set of tiles with 2 rows and 13 columns. Each tile has an English letter written in it. The letters don't have to be unique: there might be two or more tiles with the same letter written on them. Here is an example of a grid:

    ABCDEFGHIJKLM
    NOPQRSTUVWXYZ

    We say that two tiles are adjacent if they share a side or a corner. In the example grid above, the tile with the letter 'A' is adjacent only to the tiles with letters 'B', 'N', and 'O'. A tile is not adjacent to itself.

    A sequence of tiles is called a path if each tile in the sequence is adjacent to the tile which follows it (except for the last tile in the sequence, which of course has no successor). In this example, "ABC" is a path, and so is "KXWIHIJK". "MAB" is not a path because 'M' is not adjacent to 'A'. A single tile can be used more than once by a path (though the tile cannot occupy two consecutive places in the path because no tile is adjacent to itself).

    You’re given a string s which consists of 27 upper-case English letters. Each English letter occurs at least once in s. Find a grid that contains a path whose tiles, viewed in the order that the path visits them, form the string s. If there’s no solution, print "Impossible" (without the quotes).

    Input

    The only line of the input contains the string s, consisting of 27 upper-case English letters. Each English letter occurs at least once in s.

    Output

    Output two lines, each consisting of 13 upper-case English characters, representing the rows of the grid. If there are multiple solutions, print any of them. If there is no solution print "Impossible".

    Examples
    Input
    ABCDEFGHIJKLMNOPQRSGTUVWXYZ
    Output
    YXWVUTGHIJKLM
    ZABCDEFSRQPON
    Input
    BUVTYZFQSNRIWOXXGJLKACPEMDH
    Output
    Impossible
    【分析】先找到那个出现两次的字母的位置,然后分四种情况讨论,两次都在中间,一个在首一个在中间,一个在尾一个在中间,一个在首一个在尾。
    两个位置之间的字母肯定是要分成两行的,然后就模拟了。
    #include <iostream>
    #include <cstring>
    #include <cstdio>
    #include <algorithm>
    #include <cmath>
    #include <string>
    #include <map>
    #include <stack>
    #include <queue>
    #include <vector>
    #define inf 0x3f3f3f3f
    #define met(a,b) memset(a,b,sizeof a)
    typedef long long ll;
    using namespace std;
    const int N = 205;
    const int M = 24005;
    int  n=0,m,k,l;
    string str,s,a="",b="",c="",d="";
    int vis[N];
    int main() {
        cin>>str;
        vector<int>p;
        for(int i=0; i<str.size(); i++) {
            vis[str[i]]++;
        }
        for(int i=0; i<str.size(); i++) {
            if(vis[str[i]]==2) {
                s[0]=str[i];
                p.push_back(i);
            }
        }//printf("%d %d
    ",p[0],p[1]);
        if(p.size()>2||p[1]-p[0]==1) {
            puts("Impossible");
            exit(0);
        }
        bool Find=false;
        for(int i=0; i<str.size(); i++) {
            if(Find&&str[i]==s[0])break;
            if(!Find&&str[i]==s[0])Find=true;
            else if(Find)a+=str[i];
        }
        if(str[0]!=s[0]&&str[str.size()-1]!=s[0]) {
            for(int i=a.size()/2-1; i>=0; i--)b+=a[i];
            for(int i=a.size()/2; i<a.size(); i++)c+=a[i];
            //cout<<b<<" "<<c<<endl;
            for(k=p[0];k>=0&&b.size()<13;k--)b+=str[k];
    
            for(int i=str.size()-1;b.size()<13;i--)b+=str[i];
            for(int i=p[1]+1;c.size()<13&&i<str.size();i++)c+=str[i];
            for(int i=0;i<=k&&c.size()<13;i++)c+=str[i];
            cout<<b<<endl<<c<<endl;
        } else if(str[0]==s[0]&&str[str.size()-1]!=s[0]){
            for(int i=a.size()/2-1; i>=0; i--)b+=a[i];
            for(int i=a.size()/2; i<a.size(); i++)c+=a[i];
            for(k=p[1];b.size()<13;k++)b+=str[k];
            for(int i=str.size()-1;c.size()<13;i--)c+=str[i];
            cout<<b<<endl<<c<<endl;
        } else if(str[0]!=s[0]&&str[str.size()-1]==s[0]){
            for(int i=a.size()/2-1; i>=0; i--)b+=a[i];
            for(int i=a.size()/2; i<a.size(); i++)c+=a[i];
            for(k=p[0];b.size()<13;k--)b+=str[k];
            for(int i=0;c.size()<13;i++)c+=str[i];
            cout<<b<<endl<<c<<endl;
        }else if(str[0]==s[0]&&str[str.size()-1]==s[0]){
            for(int i=0;i<13;i++)b+=str[i];
            for(int i=str.size()-2;c.size()<13;i--)c+=str[i];
            cout<<b<<endl<<c<<endl;
        }
            return 0;
    }
  • 相关阅读:
    SQL Server中的执行引擎入门
    SQL Server复制入门(一)复制简介
    Django 代码片断收集(持续更新)
    今天思路有点乱,随便记一点关于 xmlrpc 的
    PIL 学习笔记(1)
    Django newforms
    在 Django 的 View 中利用 function decorator 可实现一定程度的代码重用
    今天在 Linux 上顺利编译 PIL 1.1.6 成功
    用 PIL 写了个简单的缩略图生成程序
    [转贴] 中药内外合治急慢性鼻窦炎
  • 原文地址:https://www.cnblogs.com/jianrenfang/p/5994084.html
Copyright © 2011-2022 走看看