博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【CodeForces 1265D --- Beautiful Sequence】
阅读量:2038 次
发布时间:2019-04-28

本文共 2029 字,大约阅读时间需要 6 分钟。

【CodeForces 1265D --- Beautiful Sequence】

题目来源:

Description

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.

Sample Input

2 2 2 1

Sample Output

YES

0 1 0 1 2 3 2

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.

AC代码1:

#include 
using namespace std;#define SIS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)#define endl '\n'int main(){
SIS; int a,b,c,d; cin >> a >> b >> c >> d; if(a>b) {
if(a==b+1 && c==0 && d==0) {
cout << "YES" << endl; for(int i=0;i
c) {
if(d==c+1 && a==0 && b==0) {
cout << "YES" << endl; for(int i=0;i
1) cout << "NO" << endl; else {
cout << "YES" << endl; if(b==c+1) cout << "1 "; for(int i=0;i

转载地址:http://giyof.baihongyu.com/

你可能感兴趣的文章
Haskell教程
查看>>
Haskell 几乎无痛苦上手指南
查看>>
ReactiveCocoa Tutorial – The Definitive Introduction: Part 1/2
查看>>
一种基于第三方 JSON 包的替换解决方案
查看>>
iOS获取某一时间点视频桢截图
查看>>
UIImage的一些使用技巧
查看>>
Android源码分析-资源加载机制
查看>>
Android apk动态加载机制的研究(二):资源加载和activity生命周期管理
查看>>
计算机图形学的数学基础
查看>>
来自苹果的编程语言——Swift简介
查看>>
10个主流算法简介
查看>>
UIView转UIImage
查看>>
从一款手游的思路分析用户需求
查看>>
CFMessagePort.c
查看>>
技能的反面 - 魔方和模仿
查看>>
如何修炼成某一领域的高手?
查看>>
TCP的那些事(上)
查看>>
TCP的那些事(下)
查看>>
iOS 短信与电话事件的获取
查看>>
iOS ArcGIS file is universal (2 slices) but does not contain a(n) armv7s slice
查看>>