結果

問題 No.628 Tagの勢い
ユーザー htensaihtensai
提出日時 2019-11-14 09:35:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 1,384 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 83,928 KB
実行使用メモリ 48,160 KB
最終ジャッジ日時 2024-09-21 21:21:39
合計ジャッジ時間 7,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
42,408 KB
testcase_01 AC 169 ms
42,736 KB
testcase_02 AC 166 ms
42,472 KB
testcase_03 AC 171 ms
42,800 KB
testcase_04 AC 155 ms
42,332 KB
testcase_05 AC 168 ms
42,440 KB
testcase_06 AC 166 ms
42,844 KB
testcase_07 AC 172 ms
42,420 KB
testcase_08 AC 182 ms
42,700 KB
testcase_09 AC 173 ms
42,952 KB
testcase_10 AC 193 ms
43,272 KB
testcase_11 AC 180 ms
42,704 KB
testcase_12 AC 287 ms
48,072 KB
testcase_13 AC 290 ms
48,016 KB
testcase_14 AC 291 ms
48,160 KB
testcase_15 AC 289 ms
48,108 KB
testcase_16 AC 269 ms
47,320 KB
testcase_17 AC 165 ms
42,496 KB
testcase_18 AC 169 ms
42,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		HashMap<String, Integer> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
		    sc.nextInt();
		    int count = sc.nextInt();
		    int point = sc.nextInt();
		    for (int j = 0; j < count; j++) {
		        String s = sc.next();
		        if (map.containsKey(s)) {
		            map.put(s, map.get(s) + point);
		        } else {
		            map.put(s, point);
		        }
		    }
		}
		PriorityQueue<Tag> queue = new PriorityQueue<>();
		for (Map.Entry<String, Integer> entry : map.entrySet()) {
		    queue.add(new Tag(entry.getValue(), entry.getKey()));
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < 10 && queue.size() > 0; i++) {
		    sb.append(queue.poll()).append("\n");
		}
		System.out.print(sb);
	}
	
	static class Tag implements Comparable<Tag>{
	    int score;
	    String word;
	    
	    public Tag (int score, String word) {
	        this.score = score;
	        this.word = word;
	    }
	    
	    public int compareTo(Tag another) {
	        if (score == another.score) {
	            return word.compareTo(another.word);
	        } else {
	            return another.score - score;
	        }
	    }
	    
	    public String toString() {
	        return word + " " + score;
	    }
	}
}
0