Codeforces Round #347 (Div. 2) B. Rebus

185 篇文章 0 订阅

You are given a rebus of form ? + ? - ? + ? = n, consisting of only question marks, separated by arithmetic operation '+' and '-', equality and positive integer n. The goal is to replace each question mark with some positive integer from 1 to n, such that equality holds.

Input

The only line of the input contains a rebus. It's guaranteed that it contains no more than 100 question marks, integer n is positive and doesn't exceed 1 000 000, all letters and integers are separated by spaces, arithmetic operations are located only between question marks.

Output

The first line of the output should contain "Possible" (without quotes) if rebus has a solution and "Impossible" (without quotes) otherwise.

If the answer exists, the second line should contain any valid rebus with question marks replaced by integers from 1 to n. Follow the format given in the samples.

Examples
Input
? + ? - ? + ? + ? = 42
Output
Possible
9 + 13 - 39 + 28 + 31 = 42
Input
? - ? = 1
Output
Impossible
Input
? = 1000000
Output
Possible
1000000 = 1000000



分析:设加号有 a - 1个,减号有b个,那么当且仅当a - b*n <= n <= a*n - b 时有解,解可以二分出加减的总值后构造出。


#include <cstdio>
#include <iostream>
using namespace std;
string S;
int n,tot,a,b,f[105],A[105],B[105];
int main()
{
	a++;
	while(cin>>S && S!="=")
	{
		if(S == "?") continue;
		if(S == "+") a++,f[++tot] = 1;
		else b++,f[++tot] = -1;
	}
	cin>>n;
	if(a*n - b < n || a - b*n > n) 
	{
		cout<<"Impossible"<<endl;
		return 0;
	}
	else cout<<"Possible"<<endl;
	int s = b,t = b*n;
	while(s != t) 
	{
		int mid = (s + t) / 2;
		if(mid + n >= a) t = mid;
		else s = mid + 1; 
	}
	s -= b;
	for(int i = 1;i <= b;i++)
	{
		B[i] = 1;
		B[i] += min(n-1,s);
		s -= min(n-1,s);
	}
	t += n - a;
	for(int i = 1;i <= a;i++)
	{
		A[i] = 1;
		A[i] += min(n-1,t);
		t -= min(n-1,t);
	}
	cout<<A[1];
	int nowa = 2,nowb = 1;
	for(int i = 1;i <= tot;i++)
	 if(f[i] == 1) cout<<" + "<<A[nowa++];
	 else cout<<" - "<<B[nowb++];
	cout<<" = "<<n<<endl; 
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值