比赛 |
不平凡的世界 |
评测结果 |
AAATTTTTTT |
题目名称 |
不平凡的boss |
最终得分 |
30 |
用户昵称 |
mikumikumi |
运行时间 |
7.123 s |
代码语言 |
C++ |
内存使用 |
1.44 MiB |
提交时间 |
2015-11-05 10:39:49 |
显示代码纯文本
#include<cstdio>
using namespace std;
const int SIZEN=100010,INF=0x7fffffff/2;
int ans=INF;
int N;
int A[SIZEN]={0},B[SIZEN]={0},C[SIZEN]={0};
void read()
{
scanf("%d",&N);
for(int i=1;i<=N;i++)
{
scanf("%d%d%d",&A[i],&B[i],&C[i]);
}
}
bool check(int a,int b,int c)
{
for(int i=1;i<=N;i++)
{
if(A[i]>a&&B[i]>b&&C[i]>c) return 0;
}
return 1;
}
void work()
{
for(int i=0;i<=N;i++)
{
if(A[i]>ans) continue;
for(int j=0;j<=N;j++)
{
if(A[i]+B[j]>ans) continue;
for(int k=0;k<=N;k++)
{
if(A[i]+B[j]+C[k]>ans) continue;
if(check(A[i],B[j],C[k])) ans=A[i]+B[j]+C[k];
}
}
}
printf("%d",ans);
}
int main()
{
freopen("playwithboss.in","r",stdin);
freopen("playwithboss.out","w",stdout);
read();
work();
return 0;
}