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

nyoj 904 hashmap

时间:2014-06-25 22:42:59      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

这个题目是个水题目,现在我只管做出来,效率不考虑了。

 

题目链接:

http://acm.nyist.net/JudgeOnline/problem.php?pid=904bubuko.com,布布扣

我用hashmap 很爽,很简单,但效率很低,别人有的是用二分查找,不管了,

package nyoj904;

import java.util.HashMap;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner scn=new Scanner(System.in);
        int len=scn.nextInt();
        while(len-->0)
        {
            HashMap<Integer,String> hash=new HashMap<Integer,String>();
            int m=scn.nextInt();
            int n=scn.nextInt();
            while(m-->0)
            {
                String name=scn.next();
                int score=scn.nextInt();
                if(!hash.containsKey(score))
                        {
                    hash.put(score, name);
                    
                        }    
                
                
                
            }
            while(n-->0)
            {
                System.out.println(hash.get(scn.nextInt()));
                
            }
            
            
        }

    }

}

nyoj 904 hashmap,布布扣,bubuko.com

nyoj 904 hashmap

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/hansongjiang/p/3804577.html

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