結果
問題 | No.628 Tagの勢い |
ユーザー | uafr_cs |
提出日時 | 2018-01-05 21:31:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 295 ms / 2,000 ms |
コード長 | 1,467 bytes |
コンパイル時間 | 2,358 ms |
コンパイル使用メモリ | 88,724 KB |
実行使用メモリ | 48,420 KB |
最終ジャッジ日時 | 2024-10-07 22:06:18 |
合計ジャッジ時間 | 6,950 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 164 ms
42,644 KB |
testcase_01 | AC | 170 ms
42,664 KB |
testcase_02 | AC | 163 ms
42,644 KB |
testcase_03 | AC | 166 ms
42,552 KB |
testcase_04 | AC | 166 ms
42,568 KB |
testcase_05 | AC | 166 ms
42,568 KB |
testcase_06 | AC | 168 ms
42,524 KB |
testcase_07 | AC | 174 ms
42,420 KB |
testcase_08 | AC | 172 ms
42,776 KB |
testcase_09 | AC | 171 ms
42,784 KB |
testcase_10 | AC | 198 ms
43,148 KB |
testcase_11 | AC | 175 ms
42,776 KB |
testcase_12 | AC | 285 ms
47,548 KB |
testcase_13 | AC | 295 ms
48,232 KB |
testcase_14 | AC | 282 ms
48,420 KB |
testcase_15 | AC | 287 ms
47,848 KB |
testcase_16 | AC | 266 ms
47,952 KB |
testcase_17 | AC | 166 ms
42,712 KB |
testcase_18 | AC | 167 ms
42,352 KB |
ソースコード
import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.LinkedList; import java.util.Map.Entry; import java.util.PriorityQueue; import java.util.Scanner; import java.util.TreeSet; public class Main { public static class Pair implements Comparable<Pair> { String tag; long score; public Pair(String tag, long score){ this.tag = tag; this.score = score; } @Override public int compareTo(Pair o) { if(Long.compare(o.score, this.score) != 0){ return Long.compare(o.score, this.score); }else{ return this.tag.compareTo(o.tag); } } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); HashMap<String, Long> dict = new HashMap<String, Long>(); for(int i = 0; i < N; i++){ final int id = sc.nextInt(); final int M = sc.nextInt(); final int S = sc.nextInt(); for(int j = 0; j < M; j++){ final String tag = sc.next(); if(!dict.containsKey(tag)){ dict.put(tag, 0l); } dict.put(tag, dict.get(tag) + S); } } PriorityQueue<Pair> queue = new PriorityQueue<Pair>(); for(final Entry<String, Long> entry : dict.entrySet()){ queue.add(new Pair(entry.getKey(), entry.getValue())); } for(int i = 0; i < 10 && !queue.isEmpty(); i++){ final Pair pair = queue.poll(); System.out.println(pair.tag + " " + pair.score); } } }