1. 程式人生 > >1032 挖掘機技術哪家強(20)(20 分)提問

1032 挖掘機技術哪家強(20)(20 分)提問

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

輸入格式:

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

輸出格式:

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

輸入樣例:

6
3 65
2 80
1 100
2 70
3 40
3 0

輸出樣例:

2 150
#include<cstdio>
struct Node{
	int school;
	int score;
}Student[100010];

int school[100010]={0}; 

int main(){
	int N,max=-1,maxIndex=1;
	scanf("%d",&N);
	for(int i=1;i<=N;i++){
		scanf("%d %d",&Student[i].school,&Student[i].score);
	}
	for(int i=1;i<=N;i++){
		school[Student[i].school]+=Student[i].score;
	}
	for(int i=1;i<=N;i++){
		if(max<school[i]){
			max = school[i];
			maxIndex = i;
		}
	}
	printf("%d %d",maxIndex,max);
	return 0;
}