Pat(Basic Level)Practice--1032(挖掘機技術哪家強)

Pat1032代碼

題目描述:

爲了用事實說明挖掘機技術到底哪家強,PAT組織了一場挖掘機技能大賽。現請你根據比賽結果統計出技術最強的那個學校。

輸入格式:

輸入在第1行給出不超過105的正整數N,即參賽人數。隨後N行,每行給出一位參賽者的信息和成績,包括其所代表的學校的編號(從1開始連續編號)、及其比賽成績(百分制),中間以空格分隔。

輸出格式:

在一行中給出總得分最高的學校的編號、及其總分,中間以空格分隔。題目保證答案唯一,沒有並列。

輸入樣例:
6
3 65
2 80
1 100
2 70
3 40
3 0
輸出樣例:
2 150

AC代碼:
#include<cstdlib>
#include<cstdio>
#include<map>

using namespace std;

map<int,int> m;

int main(int argc,char *argv[]){
	int n;
	scanf("%d",&n);
	for(int i=0;i<n;i++){
		int index,score;
		scanf("%d %d",&index,&score);
		m[index]+=score;
	}
	map<int,int>::iterator it;
	int index;
	int maxscore=-1;
	for(it=m.begin();it!=m.end();it++){
		if(it->second>maxscore){
			index=it->first;
			maxscore=it->second;
		}
	}
	printf("%d %d\n",index,maxscore);
}

發佈了253 篇原創文章 · 獲贊 26 · 訪問量 33萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章