Codeforces Round #278 (Div. 2)B?? Candy Boxes_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:53:37
原创
1329人浏览过

B. Candy Boxes

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

there is an old tradition of keeping 4 boxes of candies in the house in cyberland. the numbers of candies are special if their arithmetic mean, their median and their range are all equal. by definition, for a set {x1,?x2,?x3,?x4} (x1?≤?x2?≤?x3?≤?x4) arithmetic mean is , median is and range is x4?-?x1. the arithmetic mean and median are not necessary integer. it is well-known that if those three numbers are same, boxes will create a "debugging field" and codes in the field will have no bugs.

For example, 1,?1,?3,?3 is the example of 4 numbers meeting the condition because their mean, median and range are all equal to 2.

Jeff has 4 special boxes of candies. However, something bad has happened! Some of the boxes could have been lost and now there are only n (0?≤?n?≤?4) boxes remaining. The i-th remaining box contains ai candies.

Now Jeff wants to know: is there a possible way to find the number of candies of the 4?-?n missing boxes, meeting the condition above (the mean, median and range are equal)?

Input

The first line of input contains an only integer n (0?≤?n?≤?4).

立即学习前端免费学习笔记(深入)”;

The next n lines contain integers ai, denoting the number of candies in the i-th box (1?≤?ai?≤?500).

Output

In the first output line, print "YES" if a solution exists, or print "NO" if there is no solution.

If a solution exists, you should output 4?-?n more lines, each line containing an integer b, denoting the number of candies in a missing box.

All your numbers b must satisfy inequality 1?≤?b?≤?106. It is guaranteed that if there exists a positive integer solution, you can always find such b's meeting the condition. If there are multiple answers, you are allowed to print any of them.

Given numbers ai may follow in any order in the input, not necessary in non-decreasing.

ai may have stood at any positions in the original set, not necessary on lowest n first positions.

Sample test(s)

Input

211
登录后复制

Output

YES33
登录后复制

Input

3111
登录后复制

Output

NO
登录后复制

Input

41223
登录后复制

Output

YES
登录后复制
 

很麻烦的一题啊,需要分别考虑0,1,2,3,4个数的情况

#include <map>#include <set>#include <list>#include <queue>#include <stack>#include <vector>#include <cmath>#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>using namespace std;int a[5];int main(){	int n;	while (~scanf("%d", &n))	{		for (int i = 1; i <= n; ++i)		{			scanf("%d", &a[i]);		}		sort(a + 1, a + n + 1);		if (n == 4)		{			double u = (a[1] + a[2] + a[3] + a[4]) * 1.0;			u /= 4;			double v = (a[4] - a[1]);			double w = (a[2] + a[3]) * 1.0 / 2;			if (u != v || u != w || v != w)			{				printf("NO\n");			}			else			{				printf("YES\n");			}			continue;		}		else if(n == 3)		{			int u = (a[2] + a[3] - a[1]);			bool flag = false;			bool flag2 = false;			bool flag3 = false;			bool flag4 = false;			int p = u + a[1] + a[2] + a[3];			int q = u - a[1];			int r = a[2] + a[3];			if (p % 4 || r % 2)			{				flag = true;			}			else			{				p /= 4;				r /= 2;			}			if (!flag && (p != q || p != r || q != r))			{				flag = true;			}			if (!flag && u >= 1 && u <= 1000000 && u >= a[3])			{				printf("YES\n");				printf("%d\n", u);				continue;			}			u = a[1] + a[2] - a[3];			p = u + a[1] + a[2] + a[3];			q = a[3] - a[1];			r = (u + a[2]);			if (p % 4 || r % 2)			{				flag2 = true;			}			else			{				p /= 4;				r /= 2;			}			if (!flag2 && (p != q || p != r || q != r))			{				flag2 = true;			}			if (!flag2 && u >= 1 && u <= 1000000 && u >= a[2] && u <= a[3])			{				printf("YES\n");				printf("%d\n", u);				continue;			}			u = a[1] + a[3] - a[2];			p = u + a[1] + a[2] + a[3];			q = a[3] - a[1];			r = (u + a[2]);			if (p % 4 || r % 2)			{				flag3 = true;			}			else			{				p /= 4;				r /= 2;			}			if (!flag3 &&  (p != q || p != r || q != r))			{				flag3 = true;			}			if (!flag3 && u >= 1 && u <= 1000000 && u >= a[1] && u <= a[2])			{				printf("YES\n");				printf("%d\n", u);				continue;			}			u = a[1] + a[2] - a[3];   			p = u + a[1] + a[2] + a[3];			q = a[3] - u;			r = a[1] + a[2];			if (p % 4 || r % 2)			{				flag4 = true;			}			else			{				p /= 4;				r /= 2;			}			if (!flag4 && (p != q || p != r || q != r))			{				flag4 = true;			}			if (!flag4 && u >= 1 && u <= 1000000 && u <= a[1])			{				printf("YES\n");				printf("%d\n", u);				continue;			}			if (flag && flag2 &&flag3 && flag4)			{				printf("NO\n");			}					}		else if(n == 1)		{			int x4 = 3 * a[1];			int x23 = x4 + a[1];			int x2, x3;			x2 = x3 = x23 / 2;			if (a[1] <= x2 && x2 <= x3 && x3 <= x4)			{				printf("YES\n");				printf("%d\n%d\n%d\n", x2, x3, x4);			}			else			{				printf("NO\n");			}		}		else if ( n == 2)		{			int x1 = a[1], x2 = a[2];			int x4 = 3 * a[1];			int x3 = 4 * x1 - x2;			if (x1 <= x2 && x2 <= x3 && x3 <= x4)			{				printf("YES\n");				printf("%d\n%d\n", x3, x4);				continue;			}			x1 = a[1];			x3 = a[2];			x4 = 3  * a[1];			x2 = 4 * x1 - x3;			if (x1 <= x2 && x2 <= x3 && x3 <= x4)			{				printf("YES\n");				printf("%d\n%d\n", x2, x4);				continue;			}			bool flag = false;			x2 = a[1];			x3 = a[2];			x1 = x2 + x3;			if (x1 % 4)			{				flag = true;			}			else			{				x1 /= 4;				x4 = 3 * x1;				if (x1 <= x2 && x2 <= x3 && x3 <= x4)				{					printf("YES\n");					printf("%d\n%d\n", x1, x4);					continue;				}				else				{					flag = true;				}			}			bool flag2 = false;			x2 = a[1];			x4 = a[2];			x1 = x4;			if (x1 % 3)			{				flag2 = true;			}			else			{				x3 = x1 + x4 - x2;				if (x1 <= x2 && x2 <= x3 && x3 <= x4)				{					printf("YES\n");					printf("%d\n%d\n", x1, x3);					continue;				}				else				{					flag2 = true;				}			}			bool flag3 = false;			x3 = a[1];			x4 = a[2];			x1 = x4;			x2 = x1 + x4 - x3;			if (x1 % 3)			{				flag3 = true;			}			else			{				if (x1 <= x2 && x2 <= x3 && x3 <= x4)				{					printf("YES\n");					printf("%d\n%d\n", x1, x2);					continue;				}				else				{					flag3 = true;				}			}			if (flag && flag2 && flag3)			{				printf("NO\n");			}		}		else		{			printf("YES\n");			printf("1\n1\n3\n3\n");		}	}	return 0;}
登录后复制


HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号