博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #181 (Div. 2) A. Array 构造
阅读量:5779 次
发布时间:2019-06-18

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

A. Array

题目连接:

Description

Vitaly has an array of n distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold:

The product of all numbers in the first set is less than zero ( < 0).

The product of all numbers in the second set is greater than zero ( > 0).
The product of all numbers in the third set is equal to zero.
Each number from the initial array must occur in exactly one set.
Help Vitaly. Divide the given array.

Input

The first line of the input contains integer n (3 ≤ n ≤ 100). The second line contains n space-separated distinct integers a1, a2, ..., an (|ai| ≤ 103) — the array elements.

Output

In the first line print integer n1 (n1 > 0) — the number of elements in the first set. Then print n1 numbers — the elements that got to the first set.

In the next line print integer n2 (n2 > 0) — the number of elements in the second set. Then print n2 numbers — the elements that got to the second set.

In the next line print integer n3 (n3 > 0) — the number of elements in the third set. Then print n3 numbers — the elements that got to the third set.

The printed sets must meet the described conditions. It is guaranteed that the solution exists. If there are several solutions, you are allowed to print any of them.

Sample Input

3

-1 2 0

Sample Output

1 -1

1 2

1 0

Hint

题意

给你n个数,然后让你分成三组,要求第一组的乘积是小于0的,第二组是大于0的,第三组是等于0的

让你输出一个方案

题解:

第一组需要奇数个负数,第二组需要偶数个负数

如果负数是偶数,那么扔一个去第三组,那么就可以变成奇数了

奇数 = 奇数+偶数

所以讨论一下就好了

代码

#include
using namespace std;vector
ans[4];int a[400];int main(){ int n; scanf("%d",&n); int num = 0; for(int i=1;i<=n;i++) { scanf("%d",&a[i]); if(a[i]<0)num++; } if(num==1) { for(int i=1;i<=n;i++) { if(a[i]<0)ans[0].push_back(a[i]); else if(a[i]==0)ans[2].push_back(a[i]); else ans[1].push_back(a[i]); } } else if(num%2==0) { int k = 0; for(int i=1;i<=n;i++) { if(a[i]<0&&k==0){ans[0].push_back(a[i]);k++;} else if(a[i]<0&&k==1){ans[2].push_back(a[i]);k++;} else if(a[i]==0)ans[2].push_back(a[i]); else ans[1].push_back(a[i]); } } else { int k = 0; for(int i=1;i<=n;i++) { if(a[i]<0&&k==0){ans[0].push_back(a[i]);k++;} else if(a[i]==0)ans[2].push_back(a[i]); else ans[1].push_back(a[i]); } } for(int i=0;i<3;i++) { printf("%d ",ans[i].size()); for(int j=0;j

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

你可能感兴趣的文章
分镜头脚本
查看>>
链表基本操作的实现(转)
查看>>
邮件发送1
查看>>
[转] libcurl异步方式使用总结(附流程图)
查看>>
编译安装LNMP
查看>>
[转]基于display:table的CSS布局
查看>>
crm 02--->讲师页面及逻辑
查看>>
AS3.0 Bitmap类实现图片3D旋转效果
查看>>
Eigen ,MKL和 matlab 矩阵乘法速度比较
查看>>
带三角的面包屑导航栏(新增递增数字)
查看>>
Web应用程序安全与风险
查看>>
codeforces 984 A. Game
查看>>
CSS居中
查看>>
One Person Game(概率+数学)
查看>>
CodeForces 258B Little Elephant and Elections :于1-m中找出七个数,使六个数里面的4和7个数比第七个数严格小:数位dp+dfs...
查看>>
MAP
查看>>
手把手教你测——上网快鸟
查看>>
用javascript获取地址栏参数
查看>>
一起谈.NET技术,你应该知道的15个Silverlight诀窍
查看>>
商教助手!解析夏普液晶高清宽屏投影机系列
查看>>