标签:style blog io color os for sp strong 数据
描述
小王是公司的仓库管理员,一天,他接到了这样一个任务:从仓库中找出一根钢管。这听起来不算什么,但是这根钢管的要求可真是让他犯难了,要求如下: 1、 这根钢管一定要是仓库中最长的; 2、 这根钢管一定要是最长的钢管中最细的; 3、 这根钢管一定要是符合前两条的钢管中编码最大的(每根钢管都有一个互不相同的编码,越大表示生产日期越近)。 相关的资料到是有,可是,手工从几百份钢管材料中选出符合要求的那根…… 要不,还是请你编写个程序来帮他解决这个问题吧。
2 2 2000 30 123456789 2000 20 987654321 4 3000 50 872198442 3000 45 752498124 2000 60 765128742 3000 45 652278122
987654321 752498124
#include <iostream> #include <string> using namespace std; int main() { int n,m; int a,b,a1,b1; long long c,c1; cin>>n; while(n--){ cin>>m; cin>>a>>b>>c; for(int i=1;i<m;i++) { cin>>a1>>b1>>c1; if(a1>a||(a1==a && b1<b)||(a1==a && b1==b && c1>c)) a = a1,b=b1,c=c1; } cout<<c<<endl; } return 0; }
标签:style blog io color os for sp strong 数据
原文地址:http://www.cnblogs.com/imwtr/p/4069551.html