Codeforces 725C Hidden Word【思维+构造】

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

题目大意:

给你一个字符串(长度固定为27),然后让你将这个字符串变成两行2*13的字符串,使得其有一条路能够走出原字符串的路径来(向相邻的格子走,斜着也可以)。题目保证每个字母都至少出现一次。

样例分析:

ABCDEFGHIJKLMNOPQRSGTUVWXYZ就可以转变为:

ABCDEFGHIJKLM

ZYXWVUTSRQPON

我们直接从A向右走走到M然后向下走到N然后向左走到S,然后斜左上走到G之后,再走下来,然后走到最左端。


思路:


1、首先我们知道,题目保证每个字母都至少出现一次,而且字符串长度为27,那么一定有一个字母出现两次。那么我们首先可以考虑Impossible的情况,不难想到,如果当两个相同字母连在了一起的时候,无论当前怎么走,都一定走出来的是27个字符的路,明显大于2*13,明显就是无解的情况。


2、那么接下来考虑如何摆放能够构成这样的一个可行解:

①我们可以枚举一个格点作为起点,然后再枚举一个字符作为这个格点的起点字符,然后按照如图顺序走一圈,当我们走到第二次出现tmp这个字符的时候,判断一下当前位子是否能够走到上一次出现tmp的位子,如果可以,继续走,否则当前枚举的情况就是一个不可行解:


②对应如果枚举出了一个可行解,那么对应输出即可。


Ac代码:


#include<stdio.h>
#include<iostream>
#include<string.h>
using namespace std;
char a[1500];
char ans[2][30];
int vis[30];
int tmp;
int Slove(int r,int c)
{
    for(int s=0;s<27;s++)
    {
        memset(ans,' ',sizeof(ans));
        int x=r,y=c;
        int flag=0;
        int i=s;
        int cont=0;
        while(1)
        {
            if(cont>=27)return 1;
            if(a[i]-'A'==tmp&&flag==1)
            {
                flag++;
                if(x==1)
                {
                    if(ans[x-1][y]-'A'==tmp||ans[x-1][y+1]-'A'==tmp)
                    {
                        cont++;
                        i++;
                        i%=27;
                        continue;
                    }
                    else break;
                }
                else break;
            }
            if(a[i]-'A'==tmp&&flag==0)flag++;
            ans[x][y]=a[i];
            cont++;
            i++;
            i%=27;
            if(x==0)
            {
                y++;
                if(y==13)y=12,x++;
            }
            else
            {
                y--;
                if(y<0)y=0,x--;
            }
        }
    }
    return 0;
}
int main()
{
    while(~scanf("%s",a))
    {
        memset(vis,0,sizeof(vis));
        int n=strlen(a);
        for(int i=0;i<n;i++)
        {
            vis[a[i]-'A']++;
        }
        for(int i=0;i<26;i++)
        {
            if(vis[i]==2)tmp=i;
        }
        int flag=0;
        int flag2=0;
        for(int i=0;i<n-1;i++)
        {
            if(a[i]==a[i+1])
            {
                flag2=1;
                printf("Impossible\n");
                break;
            }
        }
        if(flag2==1)continue;
        for(int c=0;c<13;c++)
        {
            int tt=Slove(0,c);
            if(tt==1)
            {
                flag=1;
                for(int i=0;i<2;i++)
                {
                    for(int j=0;j<13;j++)
                    {
                        printf("%c",ans[i][j]);
                    }
                    printf("\n");
                }
                break;
            }
        }
        if(flag==0)
        {
            printf("Impossible\n");
        }
    }
}






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值