比赛 不平凡的世界 评测结果 AAAAAAAAAAT
题目名称 不平凡的boss 最终得分 90
用户昵称 AAAAAAAAAA 运行时间 1.108 s
代码语言 C++ 内存使用 1.49 MiB
提交时间 2017-09-05 21:51:38
显示代码纯文本
#include<bits/stdc++.h>
#define MAXN 100010
#define INF 0x7fffffff
namespace IO{
	char buf[1<<15],*fs,*ft;
	inline char gc(){return (fs==ft&&(ft=(fs=buf)+fread(buf,1,1<<15,stdin),fs==ft))?0:*fs++;}
	inline int qr(){
		int x=0,rev=0,ch=gc();
		while(ch<'0'||ch>'9'){if(ch=='-')rev=1;ch=gc();}
		while(ch>='0'&&ch<='9'){x=(x<<1)+(x<<3)+ch-'0';ch=gc();}
		return rev?-x:x;}
}using namespace IO;
using namespace std;
int a[MAXN],b[MAXN],c[MAXN],N,ans=INF;
void DFS(int now,int x,int y,int z){
	if(now>N)ans=min(ans,x+y+z);
	if(x+y+z>=ans)return;
	if(a[now]<=x||b[now]<=y||c[now]<=z){
		DFS(now+1,x,y,z);
		return;
	}
	DFS(now+1,a[now],y,z);
	DFS(now+1,x,b[now],z);
	DFS(now+1,x,y,c[now]);
}
int main(){
	freopen("playwithboss.in","r",stdin);
	freopen("playwithboss.out","w",stdout);
	N=qr();
	for(int i=1;i<=N;i++){a[i]=qr();b[i]=qr();c[i]=qr();}
	DFS(1,0,0,0);
	printf("%d",ans);
	return 0;
}