CodeForces 382A Ksenia and Pan Scales

Ksenia has ordinary pan scales and several weights of an equal mass. Ksenia has already put some weights on the scales, while other weights are untouched. Ksenia is now wondering whether it is possible to put all the remaining weights on the scales so that the scales were in equilibrium.

The scales is in equilibrium if the total sum of weights on the left pan is equal to the total sum of weights on the right pan.

Input

The first line has a non-empty sequence of characters describing the scales. In this sequence, an uppercase English letter indicates a weight, and the symbol "|" indicates the delimiter (the character occurs in the sequence exactly once). All weights that are recorded in the sequence before the delimiter are initially on the left pan of the scale. All weights that are recorded in the sequence after the delimiter are initially on the right pan of the scale.

The second line contains a non-empty sequence containing uppercase English letters. Each letter indicates a weight which is not used yet.

It is guaranteed that all the English letters in the input data are different. It is guaranteed that the input does not contain any extra characters.

Output

If you cannot put all the weights on the scales so that the scales were in equilibrium, print string "Impossible". Otherwise, print the description of the resulting scales, copy the format of the input.

If there are multiple answers, print any of them.(如果一次输入有多种结果,输出其中一种就行)

Examples
input
AC|T
L
output
AC|TL
input
|ABC
XYZ
output
XYZ|ABC
input
W|T
F
output
Impossible
input
ABC|
D
output
Impossible
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
int main()
{
	int i,j,k;
	char a[30],b[30];
	int n,m,t;
	int l1,l2;
	int la,lb;
	gets(a);
	gets(b);
	la=strlen(a);
	lb=strlen(b);
	for(i=0;i<la;i++)
	{
		if(a[i]=='|')
		{
			t=i;
			break;
		}
	}
	l1=t;
	l2=la-t-1;
	if(l1==l2)
    {
    	if(lb&1)
        {
        	cout<<"Impossible"<<endl;
		}
		else
		{
			for(i=0;i<lb/2;i++)
			{
				cout<<b[i];
			}
			for(i=0;i<l1;i++)
			{
				cout<<a[i];
			}
			cout<<'|';
			for(i=t+1;i<la;i++)
			{
				cout<<a[i];
			}
			for(i=lb/2;i<lb;i++)
			{
				//cout<<b[i]<<endl;
				cout<<b[i];
			}
			cout<<endl;
		}
	}
	else
	{
		if(l1>l2)
		{
			n=l1-l2;
			m=lb-n;
			//if(m&1)这是第一次提交时错误的原因,如果当给的重量不够补的时候,m的结果小于0,这就不能够准确判断m是奇数还是偶数了 
			if(m&1||m<0)
			{
				cout<<"Impossible"<<endl;
			}
			else
			{
				for(i=n+m/2;i<lb;i++)
				{
					cout<<b[i];
				}
				for(i=0;i<l1;i++)
				{
					cout<<a[i];
				}
				cout<<'|';
				for(i=t+1;i<la;i++)
				{
					cout<<a[i];
				}
				for(i=0;i<n+m/2;i++)
				{
					//cout<<b[i]<<endl;这里是第二次提交时错误的原因,如果天平右边有多个b[i]要输出,那么回车就多余了,错误原因是样例误导了我 
					cout<<b[i];
				}
				cout<<endl;
			}
		}
		else
	    {
	    	n=l2-l1;
			m=lb-n;
			//if(m&1)这是第一次提交时错误的原因,如果当给的重量不够补的时候,m的结果小于0,这就不能够准确判断m是奇数还是偶数了
			if(m&1||m<0)
			{
				cout<<"Impossible"<<endl;
			}
			else
			{
				for(i=0;i<n+m/2;i++)
				{
					cout<<b[i];
				}
				for(i=0;i<l1;i++)
				{
					cout<<a[i];
				}
				cout<<'|';
				for(i=t+1;i<la;i++)
				{
					cout<<a[i];
				}
				for(i=n+m/2;i<lb;i++)
				{
					//cout<<b[i]<<endl;这里是第二次提交时错误的原因,如果天平右边有多个b[i]要输出,那么回车就多余了,错误原因是样例误导了我 
					cout<<b[i];
				}
				cout<<endl;
			}
		}
	}
	return 0;
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值