记录编号 205428 评测结果 TTTTTTTTTT
题目名称 不平凡的boss 最终得分 0
用户昵称 GravatarYXH_YXH 是否通过 未通过
代码语言 C++ 运行时间 10.013 s
提交时间 2015-11-05 12:48:11 内存使用 1.66 MiB
显示代码纯文本
#include<iostream>
#include<ctime>
#include<cstdlib>
#include<algorithm>
#include<cstdio>
using namespace std;
const int MAXN=100010,oo=200000000;
int N;
struct dangerous{
	int num;
	int a,b,c;
}e[MAXN];
long long sum=oo;
int main(){
	freopen("playwithboss.in","r",stdin);
	freopen("playwithboss.out","w",stdout);
	
	cin>>N;
	for(int i=1; i<=300; i++)scanf("%d%d%d",&e[i].a,&e[i].b,&e[i].c);
	for(int i=0; i<=300; i++)
		for(int j=0; j<=300; j++)
			for(int k=0; k<=N; k++){
				bool flag=0;
				for(int h=1; h<=N; h++){
					if(e[h].a<=i||e[h].b<=j||e[h].c<=k)flag=0;
					else{flag=1;break;}
				}
				if(!flag&&sum>i+j+k)
					sum=i+j+k;
			}
	cout<<sum<<endl;
	
	fclose(stdin);
	fclose(stdout);
	return 0;
}
/*

*/