码迷,mamicode.com
首页 > 其他好文 > 详细

入门模拟——B1032挖掘机技术哪家强

时间:2019-12-29 16:35:43      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:bsp   main   space   style   挖掘   div   code   res   ++   

技术图片

 

 

#include <bits/stdc++.h>
#include<math.h>
using namespace std;
const int MAX_LEN = 100005;
struct Student{
    int number;
    int grade;
}temp[MAX_LEN];
int main(){
    int n;
    cin>>n;
    for(int i=0;i<n;++i){
        int fir = 0;
        int sec = 0;
        cin>>fir;
        cin>>sec;
        temp[fir].grade += sec;
    }
    int num = 0;
    int result = 0;
    for(int i=0;i<MAX_LEN;++i){
        if(temp[i].grade > result){
            num = i;
            result = temp[i].grade;
        }
    }
    cout<<num<<" "<<result<<endl;
    system("pause");
    return 0;
} 

入门模拟——B1032挖掘机技术哪家强

标签:bsp   main   space   style   挖掘   div   code   res   ++   

原文地址:https://www.cnblogs.com/JasonPeng1/p/12115337.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!