其他分享
首页 > 其他分享> > CCF-CSP-2019-09-1小明种苹果

CCF-CSP-2019-09-1小明种苹果

作者:互联网

题目链接:http://118.190.20.162/view.page?gpid=T94

思路:模拟,以后模拟题中整数型变量最好定义为long long类型

代码:

#include<bits/stdc++.h>

using namespace std;

int main (){
    int n,m;
    cin>>n>>m;
    int res=1000,no=0,al=0;
    for(int i=1;i<=n;i++){
        int ans,num,atm=0;
        cin>>ans;//这棵树最初的苹果数
        for(int j=0;j<m;j++){
            cin>>num;
            atm+=num;//计算这棵树一共疏果多少
        }
        if(atm<res){//比较并记录较大值和树的序号
            res=atm;
            no=i;
        }
        al+=(ans+atm);
    }
    cout<<al<<" "<<no<<" "<<abs(res);
    return 0;
}
/*
3 3
73 -8 -6 -4
76 -5 -10 -8
80 -6 -15 0

2 2
10 -3 -1
15 -4 0
*/

标签:09,小明种,int,atm,long,这棵树,num,2019,苹果
来源: https://www.cnblogs.com/abestxun/p/14544022.html