poj 3399 Product(模拟)

# include <stdio.h>
# include <string.h>
# include <algorithm>
using namespace std;
int cmp(int x,int y)
{
	return x>y;
}
int main()
{
	int a[110],a1[110],a2[110],ans[110];
	int n,k,k1,k2,i,k3;
	while(~scanf("%d%d",&n,&k))
	{
		k1=0;
		k2=0;
		for(i=0;i<n;i++)
		{
			scanf("%d",&a[i]);
			if(a[i]>0)//存正数
				a1[k1++]=a[i];
			else//存负数
				a2[k2++]=a[i];
		}
		sort(a1,a1+k1);
		sort(a2,a2+k2,cmp);//负数从大到小
		k3=0;
		if(k%2)//k为奇数
		{
			k--;
			if(k1>0)
			{
				ans[k3++]=a1[--k1];//先选一个最大的正数
			}
			else//全部为负数的情况
			{
				for(i=0;i<=k;i++)//因为为奇数,选大的负数
				{
					if(i==0)
						printf("%d",a2[i]);
					else
						printf(" %d",a2[i]);
				}
				printf("\n");
				continue;
			}
		}
		for(i=0;i<k/2;i++)//剩下k/2对
		{
			if(k1>=2&&k2>=2)
			{
				int t1=a1[k1-1]*a1[k1-2];
				int t2=a2[k2-1]*a2[k2-2];
				if(t1>t2)//选大的
				{
					ans[k3++]=a1[--k1];
					ans[k3++]=a1[--k1];
				}
				else
				{
					ans[k3++]=a2[--k2];
					ans[k3++]=a2[--k2];
				}
			}
			else if(k1>=2)
			{
				ans[k3++]=a1[--k1];
				ans[k3++]=a1[--k1];
			}
			else if(k2>=2)
			{
				ans[k3++]=a2[--k2];
				ans[k3++]=a2[--k2];
			}
			else
			{
				ans[k3++]=a1[--k1];
				ans[k3++]=a2[--k2];
			}
		}
		sort(ans,ans+k3);
		for(i=k3-1;i>=0;i--)
		{
			if(i==k3-1)
				printf("%d",ans[i]);
			else
				printf(" %d",ans[i]);
		}
		printf("\n");
	}
	return 0;
}

poj 3399 Product(模拟),布布扣,bubuko.com

时间: 2024-10-06 04:48:15

poj 3399 Product(模拟)的相关文章

poj 3399 Product(数学题)

题目链接:http://poj.org/problem?id=3399 Product Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2837   Accepted: 686   Special Judge Description There is an array of N integer numbers in the interval from -30000 to 30000. The task is to sele

poj 3399 Product(数学)

主题链接:http://poj.org/problem?id=3399 Product Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2837   Accepted: 686   Special Judge Description There is an array of N integer numbers in the interval from -30000 to 30000. The task is to sele

[ACM] POJ 1068 Parencodings(模拟)

Parencodings Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 19352   Accepted: 11675 Description Let S = s1 s2...s2n be a well-formed string of parentheses. S can be encoded in two different ways: q By an integer sequence P = p1 p2...pn

【POJ 1028】模拟浏览器

本题要求模拟浏览器的前进.后退等操作. 用两个栈实现,一个控制前进,一个控制后退. 在前进与后退操作中,从一个栈中弹出栈顶元素,压入另一个栈中. 当打开一个新网页时,将前进栈清空. 代码如下: #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include <cstdlib> #include

POJ 1835 大模拟

宇航员 #include<iostream> #include<cstdio> #include<string> #include<cstring> #define maxn 10010 using namespace std; int a[7],temp[7]; char str[10]; void solve(int str2[],int str3[]) { if(strcmp(str,"forward")==0)//方向不变 { s

POJ 1102 LC-Display 模拟

Description A friend of you has just bought a new computer. Until now, the most powerful computer he ever used has been a pocket calculator. Now, looking at his new computer, he is a bit disappointed, because he liked the LC-display of his calculator

poj 2160 Box 模拟

题意: 给6块木板的长度,判断它们是否可以组成一个长方体. 分析: 模拟,首先判断6块木板是否可以分为3组完全相等的木板,再判断这3组木板是否能组成长方体. 代码: //poj 2160 //sep9 #include <iostream> #include <algorithm> using namespace std; int vis[8]; int x[8],y[8]; int a[8]; int main() { int i,j; for(i=0;i<6;++i){

poj 1021 2D-Nim 模拟

题意: 给两个平面,每个平面上有一些点,相邻的点可构成点集,为两个平面内的点集是够都对应相似.两个点集相似是指经过对称或旋转或平移后相等. 分析: 直接模拟判断. 代码: //poj 1021 //sep9 #include <iostream> #include <vector> #include <algorithm> using namespace std; int w,h,n; int g[128][128]; int vis[128][128]; int di

POJ 1008 简单模拟题

e.... 虽然这是一道灰常简单的模拟题.但是米做的时候没有读懂第二个日历的计时方法.然后捏.敲完之后华丽的WA了进一个点.坑点就在一年的最后一天你是该输出本年的.e ...但是我好想并没有..看discuss里好想被坑的人还不少.总天数能直接整除260的时候.年数要减1. 不喜欢做模拟.....5555.... 附代码: #include<stdio.h>#include<string.h>#include<iostream>#include<string>