AIM Tech Round 3 (Div. 1)-B. Recover the String

原题链接

B. Recover the String
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

For each string s consisting of characters '0' and '1' one can define four integers a00a01a10 and a11, where axy is the number of subsequences of length 2 of the string s equal to the sequence {x, y}.

In these problem you are given four integers a00a01a10a11 and have to find any non-empty string s that matches them, or determine that there is no such string. One can prove that if at least one answer exists, there exists an answer of length no more than 1 000 000.

Input

The only line of the input contains four non-negative integers a00a01a10 and a11. Each of them doesn't exceed 109.

Output

If there exists a non-empty string that matches four integers from the input, print it in the only line of the output. Otherwise, print "Impossible". The length of your answer must not exceed 1 000 000.

Examples
input
1 2 3 4
output
Impossible
input
1 2 2 1
output
0110

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <map>
#include <vector>
#include <queue>
#include <cmath>
#define maxn 1000005
#define MOD 1000000007
#define INF 1e9
using namespace std;
typedef long long ll;

char str[maxn];
int main(){
	
//	freopen("in.txt", "r", stdin);
	ll a, b, c, d;
	scanf("%I64d%I64d%I64d%I64d", &a, &b, &c, &d);
	a *= 2;
	d *= 2;
	ll k1 = sqrt(a);
	ll k2 = sqrt(d);
	if(k1 * (k1 + 1) != a || k2 * (k2 + 1) != d){
		puts("Impossible");
		return 0;
	}
	if(a == 0 && b == 0 && c == 0 && d == 0){
		puts("0");
		return 0;
	}
	if(a == 0 && b == 0 && c == 0 && d){
		for(int i = 1; i <= k2 + 1; i++)
		 str[i] = '1';
		puts(str+1);
		return 0;
	}
	if(a && b == 0 && c == 0 && d == 0){
		for(int i  = 1; i <= k1 + 1; i++)
		 str[i] = '0';
		puts(str+1);
		return 0;
	}
	if((k1+1) * (k2+1) != b + c){
		puts("Impossible");
		return 0;
	}
	k1++, k2++;
	ll cc = b / k2, e = b % k2;
	for(int i = 1; i <= k1 + k2; i++)
	 str[i] = '0';
	for(int i = cc + 1; i <= cc + k2; i++)
	 str[i] = '1';
	if(e){
	 str[cc+k2+1] = '1';
	 str[cc+k2+1-e] = '0';
    }
    puts(str+1);
    return 0;
}


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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值