记录编号 | 445485 | 评测结果 | AAAAAAAAAAT | ||
---|---|---|---|---|---|
题目名称 | 不平凡的boss | 最终得分 | 90 | ||
用户昵称 | 是否通过 | 未通过 | |||
代码语言 | C++ | 运行时间 | 1.290 s | ||
提交时间 | 2017-09-06 08:17:48 | 内存使用 | 1.46 MiB | ||
#include<bits/stdc++.h>//不看题解只能打暴力的蒟蒻 using namespace std; int a[100005],b[100005],c[100005],ans=0x3fffffff,n; void dfs(int x,int A,int B,int C){ int tem=A+B+C; if(tem>=ans)return ; if(x==n+1){ ans=min(ans,tem); return ; } if(a[x]<=A||b[x]<=B||c[x]<=C){ dfs(x+1,A,B,C); return ; } dfs(x+1,a[x],B,C); dfs(x+1,A,b[x],C); dfs(x+1,A,B,c[x]); } int main() { freopen("playwithboss.in","r",stdin); freopen("playwithboss.out","w",stdout); scanf("%d",&n); for(int i=1;i<=n;i++){ scanf("%d%d%d",&a[i],&b[i],&c[i]); } dfs(1,0,0,0); cout<<ans; return 0; }