Codeforces 300A Array
Posted yfceshi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 300A Array相关的知识,希望对你有一定的参考价值。
题目链接:http://codeforces.com/problemset/problem/300/A
由于题目保证有解,所以能够把数组排序,最小的数分在第一组。然后最大的数假设大于0就分在第二组。其余的数和0分在第三组(比赛的时候仅仅记得0乘0是0。居然忘记0乘其他数也是0了.....Orz)。
假设最大的数小于0或等于0。。说明比它小的数一定小于0。把排序后的数组的第二和第三的数放在第二组,一定能保证乘积为正,剩下的和0分为一组。
#include<cstdio> #include<iostream> #include<sstream> #include<cstdlib> #include<cstring> #include<string> #include<climits> #include<cmath> #include<algorithm> #include<queue> #include<vector> #include<stack> #include<set> #include<map> using namespace std; int main() { int n,a[105]; while(~scanf("%d",&n)) { int i; for(i=0; i<n; i++) scanf("%d",&a[i]); sort(a,a+n); printf("1 %d\n",a[0]); if(a[n-1]>0) { printf("1 %d\n",a[n-1]); printf("%d %d",n-2,a[n-2]); for(i=1; i<n-2; i++) printf(" %d",a[i]); printf("\n"); } else { printf("2 %d %d\n",a[1],a[2]); printf("%d %d",n-3,a[n-1]); for(i=3; i<n-1; i++) printf(" %d",a[i]); printf("\n"); } } return 0; }
以上是关于Codeforces 300A Array的主要内容,如果未能解决你的问题,请参考以下文章
js代码片段: utils/lcoalStorage/cookie
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段
[TIA PORTAL][CONVERT] Convert Char Array to DInt...DInt to Char Array..Useful and easy function(代码片段