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 = ;
const int M = ;
int n=,m,k,l;
string str,s,a="",b="",c="",d="";
int vis[N];
int main() {
cin>>str;
vector<int>p;
for(int i=; i<str.size(); i++) {
vis[str[i]]++;
}
for(int i=; i<str.size(); i++) {
if(vis[str[i]]==) {
s[]=str[i];
p.push_back(i);
}
}//printf("%d %d\n",p[0],p[1]);
if(p.size()>||p[]-p[]==) {
puts("Impossible");
exit();
}
bool Find=false;
for(int i=; i<str.size(); i++) {
if(Find&&str[i]==s[])break;
if(!Find&&str[i]==s[])Find=true;
else if(Find)a+=str[i];
}
if(str[]!=s[]&&str[str.size()-]!=s[]) {
for(int i=a.size()/-; i>=; i--)b+=a[i];
for(int i=a.size()/; i<a.size(); i++)c+=a[i];
//cout<<b<<" "<<c<<endl;
for(k=p[];k>=&&b.size()<;k--)b+=str[k]; for(int i=str.size()-;b.size()<;i--)b+=str[i];
for(int i=p[]+;c.size()<&&i<str.size();i++)c+=str[i];
for(int i=;i<=k&&c.size()<;i++)c+=str[i];
cout<<b<<endl<<c<<endl;
} else if(str[]==s[]&&str[str.size()-]!=s[]){
for(int i=a.size()/-; i>=; i--)b+=a[i];
for(int i=a.size()/; i<a.size(); i++)c+=a[i];
for(k=p[];b.size()<;k++)b+=str[k];
for(int i=str.size()-;c.size()<;i--)c+=str[i];
cout<<b<<endl<<c<<endl;
} else if(str[]!=s[]&&str[str.size()-]==s[]){
for(int i=a.size()/-; i>=; i--)b+=a[i];
for(int i=a.size()/; i<a.size(); i++)c+=a[i];
for(k=p[];b.size()<;k--)b+=str[k];
for(int i=;c.size()<;i++)c+=str[i];
cout<<b<<endl<<c<<endl;
}else if(str[]==s[]&&str[str.size()-]==s[]){
for(int i=;i<;i++)b+=str[i];
for(int i=str.size()-;c.size()<;i--)c+=str[i];
cout<<b<<endl<<c<<endl;
}
return ;
}

codeforces 725/C的更多相关文章

  1. 【Codeforces Round 725】Canada Cup 2016

    模拟Canada Cup 2016,ABC三题,Rank1376 第三题卡住了 Codeforces 725 C 求出两个相同字符的位置,记为x和y. 然后考虑把相同的那个字符放在第一行的什么地方, ...

  2. 刷题记录:Codeforces Round #725 (Div. 3)

    Codeforces Round #725 (Div. 3) 20210704.网址:https://codeforces.com/contest/1538. 感觉这个比上一个要难. A 有一个n个数 ...

  3. Codeforces Round #725 (Div. 3) A-D,F题解

    A. Stone Game 思路:总共3种情况,都从最左端被拿走,都从最右端被拿走,左侧的从最左端被拿走且右侧的从最右端被拿走,取最小值即可 代码: //CF-725.A #include<bi ...

  4. Codeforces 725B Food on the Plane

    B. Food on the Plane time limit per test:2 seconds memory limit per test:256 megabytes input:standar ...

  5. python爬虫学习(5) —— 扒一下codeforces题面

    上一次我们拿学校的URP做了个小小的demo.... 其实我们还可以把每个学生的证件照爬下来做成一个证件照校花校草评比 另外也可以写一个物理实验自动选课... 但是出于多种原因,,还是绕开这些敏感话题 ...

  6. 【Codeforces 738D】Sea Battle(贪心)

    http://codeforces.com/contest/738/problem/D Galya is playing one-dimensional Sea Battle on a 1 × n g ...

  7. 【Codeforces 738C】Road to Cinema

    http://codeforces.com/contest/738/problem/C Vasya is currently at a car rental service, and he wants ...

  8. 【Codeforces 738A】Interview with Oleg

    http://codeforces.com/contest/738/problem/A Polycarp has interviewed Oleg and has written the interv ...

  9. CodeForces - 662A Gambling Nim

    http://codeforces.com/problemset/problem/662/A 题目大意: 给定n(n <= 500000)张卡片,每张卡片的两个面都写有数字,每个面都有0.5的概 ...

随机推荐

  1. asp.net mvc 2.o 中使用JQuery.uploadify

    From:http://www.cnblogs.com/strugglesMen/archive/2011/07/01/2095916.html 官方网站http://www.uploadify.co ...

  2. Problem K 栈

    Description A math instructor is too lazy to grade a question in the exam papers in which students a ...

  3. 解决VS2010控制台程序运行结束不显示请按任意键继续

    在VS2010里的控制台应用程序在运行时,结果画面一闪而过,不管是用F5 还是用Ctrl + F5都是一样,导致无法看到结果. 网上有不少的办法,说是都是在程序最后加一个要程序暂停的语句( syste ...

  4. hadoop2.x通过Zookeeper来实现namenode的HA方案以及ResourceManager单点故障的解决方案

    我们知道hadoop1.x之前的namenode存在两个主要的问题:1.namenode内存瓶颈的问题,2.namenode的单点故障的问题.针对这两个问题,hadoop2.x都对它进行改进和解决.其 ...

  5. poj1080 dp

    //Accepted 200 KB 0 ms //dp //dp[i][j]表示s1用前i个,s2用前j个字符能得到的最大分数 //dp[i][j]=max(dp[i-1][j]+score[s1[i ...

  6. Android 对 properties文件的读写操作

    -. 放在res中的properties文件的读取,例如对放在assets目录中的setting.properties的读取:PS:之所以这里只是有读取操作,而没有写的操作,是因为我发现不能对res下 ...

  7. Ubuntu 14.10 下卸载MySQL

    前面讲了Mysql的简单安装方式,通过sudo apt-get install mysql-server 等脚本,安装之后如何卸载? 1 通过下面命令删除MySQL sudo apt-get auto ...

  8. Ubuntu 14.10 下安装MySQL

    在Ubuntu上安装MySQL很简单,只需要几个命令行 1 安装服务器 sudo apt-get install mysql-server 2 安装客户端 sudo apt-get install m ...

  9. 深入学习:Windows下Git入门教程(上)

    一,安装Git: 1.1Linux上安装命令: sudo apt-get install git 1.2在Windows上安装Git: 使用Windows版的msysgit,官方下载地址:http:/ ...

  10. Python 温习

    关于Python内置函数的示例 Type "copyright", "credits" or "license()" f重写or more ...