Beautiful Sequence CodeForces - 1264B(暴力)

An integer sequence is called beautiful if the difference between any two consecutive numbers is equal to 1. More formally, a sequence s1,s2,…,sn is beautiful if |si−si+1|=1 for all 1≤i≤n−1.

Trans has a numbers 0, b numbers 1, c numbers 2 and d numbers 3. He wants to construct a beautiful sequence using all of these a+b+c+d numbers.

However, it turns out to be a non-trivial task, and Trans was not able to do it. Could you please help Trans?

Input
The only input line contains four non-negative integers a, b, c and d (0<a+b+c+d≤105).

Output
If it is impossible to construct a beautiful sequence satisfying the above constraints, print “NO” (without quotes) in one line.

Otherwise, print “YES” (without quotes) in the first line. Then in the second line print a+b+c+d integers, separated by spaces — a beautiful sequence. There should be a numbers equal to 0, b numbers equal to 1, c numbers equal to 2 and d numbers equal to 3.

If there are multiple answers, you can print any of them.

Examples
Input
2 2 2 1
Output
YES
0 1 0 1 2 3 2
Input
1 2 3 4
Output
NO
Input
2 2 2 3
Output
NO
Note
In the first test, it is easy to see, that the sequence is beautiful because the difference between any two consecutive numbers is equal to 1. Also, there are exactly two numbers, equal to 0, 1, 2 and exactly one number, equal to 3.

It can be proved, that it is impossible to construct beautiful sequences in the second and third tests.
思路:分别考虑两个数,三个数,四个数不为零的情况,然后if-else语句去写就可以了。这是我目前为止写的最长的if-else。
代码如下:

#include<bits/stdc++.h>
#define ll long long
using namespace std;

int a,b,c,d;

int main()
{
	scanf("%d%d%d%d",&a,&b,&c,&d);
	if(a&&!b&&!c&&!d) 
	{
		if(a==1) cout<<"YES"<<endl<<0<<endl;
		else cout<<"NO"<<endl;
	}
	else if(!a&&b&&!c&&!d)
	{
		if(b==1) cout<<"YES"<<endl<<1<<endl;
		else cout<<"NO"<<endl;
	}
	else if(!a&&!b&&c&&!d)
	{
		if(c==1) cout<<"YES"<<endl<<2<<endl;
		else cout<<"NO"<<endl;
	}
	else if(!a&&!b&&!c&&d)
	{
		if(d==1) cout<<"YES"<<endl<<3<<endl;
		else cout<<"NO"<<endl;
	}
	else if(a&&b&&!c&&!d)
	{
		if(abs(a-b)>1) cout<<"NO"<<endl;
		else 
		{
			if(a>b)
			{
				cout<<"YES"<<endl<<0<<" ";
				while(b--) cout<<"1 0 ";
				cout<<endl;
			}
			else if(b>a)
			{
				cout<<"YES"<<endl<<1<<" ";
				while(a--) cout<<"0 1 ";
				cout<<endl;
			}
			else
			{
				cout<<"YES"<<endl;
				while(a--) cout<<"0 1 ";
				cout<<endl;
			}
		}
	}
	else if(a&&!b&&c&&!d) cout<<"NO"<<endl;
	else if(a&&!b&&!c&&d) cout<<"NO"<<endl;
	else if(!a&&b&&c&&!d)
	{
		if(abs(b-c)>1) cout<<"NO"<<endl;
		else
		{
			if(b>c) 
			{
				cout<<"YES"<<endl<<1<<" ";
				while(c--) cout<<"2 1 ";
				cout<<endl;
			}
			else if(c>b)
			{
				cout<<"YES"<<endl<<2<<" ";
				while(b--) cout<<"1 2 ";
				cout<<endl;
			}
			else
			{
				cout<<"YES"<<endl;
				while(b--) cout<<"1 2 ";
				cout<<endl;
			}
		}
	}
	else if(!a&&b&&!c&&d) cout<<"NO"<<endl;
	else if(!a&&!b&&c&&d)
	{
		if(abs(c-d)>1) cout<<"NO"<<endl;
		else
		{
			if(c>d)
			{
				cout<<"YES"<<endl<<2<<" ";
				while(d--) cout<<"3 2 ";
				cout<<endl; 
			}
			else if(d>c)
			{
				cout<<"YES"<<endl<<3<<" ";
				while(c--) cout<<"2 3 ";
				cout<<endl;
			}
			else 
			{
				cout<<"YES"<<endl;
				while(c--) cout<<"3 2 ";
				cout<<endl;
			}
		}
	}
	else if(a&&b&&c&&!d)
	{
		if(abs(a+c-b)>1) cout<<"NO"<<endl;
		else
		{
			if(b>a+c)
			{
				cout<<"YES"<<endl<<1<<" ";
				b--;
				while(b)
				{
					if(a) cout<<"0 1 ",a--;
					else if(c)cout<<"2 1 ",c--;
					b--;
				}
				cout<<endl;
			}
			else if(b<a+c)
			{
				cout<<"YES"<<endl<<0<<" ";
				a--;
				while(b)
				{
					if(a) cout<<"1 0 ",a--;
					else if(c)cout<<"1 2 ",c--;
					b--;
				}
				cout<<endl;
			}
			else
			{
				cout<<"YES"<<endl;
				while(b)
				{
					if(a) cout<<"0 1 ",a--;
					else if(c)cout<<"2 1 ",c--;
					b--;
				}
				cout<<endl;
			}
		}
	}
	else if(a&&b&&!c&&d) cout<<"NO"<<endl;
	else if(!a&&b&&c&&d)
	{
		if(abs(b+d-c)>1) cout<<"NO"<<endl;
		else
		{
			if(c>b+d)
			{
				cout<<"YES"<<endl<<2<<endl;
				c--;
				while(c)
				{
					if(b) cout<<"1 2 ",b--;
					else if(d)cout<<"3 2 ",d--;
					c--;
				}
				cout<<endl;
			}
			else if(c<b+d)
			{
				cout<<"YES"<<endl<<1<<endl;
				b--;
				while(c)
				{
					if(b) cout<<"2 1 ",b--;
					else if(d)cout<<"2 3 ",d--;
					c--;
				}
				cout<<endl;
			}
			else
			{
				cout<<"YES"<<endl;
				while(c)
				{
					if(b) cout<<"1 2 ",b--;
					else if(d)cout<<"3 2 ",d--;
					c--;
				}
				cout<<endl;
			}
		}
	}
	else 
	{
		if(a>b||d>c||abs(b+d-a-c)>1) cout<<"NO"<<endl;
		else
		{
			vector<int> p;
			if(a+c>=b+d) 
			{
				for(int i=0;i<a+c;i++)
				{
					if(i<a) p.push_back(0);
					else p.push_back(2);
				}
				cout<<"YES"<<endl;
				for(int i=0;i<p.size();i++)
				{
					cout<<p[i]<<" ";
					if(b) cout<<1<<" ",b--;
					else if(d) cout<<3<<" ",d--;
				}
				cout<<endl;
			}
			else 
			{
				for(int i=0;i<b+d;i++)
				{
					if(i<b) p.push_back(1);
					else p.push_back(3);
				}
				cout<<"YES"<<endl;
				for(int i=0;i<p.size();i++)
				{
					cout<<p[i]<<" ";
					if(a) cout<<"0 ",a--;
					else if(c) cout<<"2 ",c--;
				}
				cout<<endl;
			}
		}
	}
	return 0;
}

努力加油a啊,(o)/~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

starlet_kiss

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值