1032

Posted zhuzehua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1032相关的知识,希望对你有一定的参考价值。

初步判断,这一题是送分题,赶紧做出来。

思路:统计对应学校的总分,然后进行比较

一个超时,扣三分,数组还是不能多用。

import java.util.HashSet;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
    // write your code here
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        int[][] stu=new int[n][2];
        HashSet<Integer> col=new HashSet<Integer>();
        for (int i=0;i<n;i++){
                stu[i][0]=sc.nextInt();
                stu[i][1]=sc.nextInt();
                col.add(stu[i][0]);
        }
        /*需要新建两个数组
         * 对一个存放学校序号,元素不能重复,
         * 一个存放学校考试总分数,初始值为0*/
        Object[] o=col.toArray();
        int[] id=new int[col.size()];
        int[] score=new int[col.size()];
        for (int i=0;i<col.size();i++){
            id[i]=(int)(o[i]);
            score[i]=0;
            for (int j=0;j<n;j++){
                if (id[i]==stu[j][0]){
                    score[i]=score[i]+stu[j][1];
                }
            }
        }
        //获取score中最大元素
        int max=0;
        for (int i=0;i<score.length;i++){
            if(max<score[i]){
                max=score[i];
            }
        }
        for (int i=0;i<score.length;i++){
            if(score[i]==max){
                System.out.println(id[i]+" "+score[i]);
            }
        }


    }
}

 

以上是关于1032的主要内容,如果未能解决你的问题,请参考以下文章

浙大pat甲级题目---1032. Sharing (25)

[贪心]TYVJ1032 零用钱

HDU 1032 [The 3n + 1 problem] 暴力模拟

怎样办理DB2中呈现的SQL1032N错误现象

ACdream1032 Component

1032 Sharing