結果

問題 No.628 Tagの勢い
ユーザー denderaKawazudenderaKawazu
提出日時 2018-02-14 00:11:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 2,051 bytes
コンパイル時間 2,794 ms
コンパイル使用メモリ 89,316 KB
実行使用メモリ 60,012 KB
最終ジャッジ日時 2024-10-07 22:30:28
合計ジャッジ時間 6,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
55,080 KB
testcase_01 AC 144 ms
54,916 KB
testcase_02 AC 157 ms
54,968 KB
testcase_03 AC 168 ms
55,024 KB
testcase_04 AC 155 ms
54,996 KB
testcase_05 AC 157 ms
54,876 KB
testcase_06 AC 152 ms
55,024 KB
testcase_07 AC 158 ms
55,208 KB
testcase_08 AC 160 ms
55,060 KB
testcase_09 AC 157 ms
55,200 KB
testcase_10 AC 188 ms
56,956 KB
testcase_11 AC 170 ms
55,380 KB
testcase_12 AC 273 ms
60,008 KB
testcase_13 AC 273 ms
60,012 KB
testcase_14 AC 259 ms
59,788 KB
testcase_15 AC 272 ms
59,772 KB
testcase_16 AC 250 ms
58,464 KB
testcase_17 AC 153 ms
54,932 KB
testcase_18 AC 152 ms
54,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Scanner;
import java.util.HashMap;
import java.util.Comparator;
import java.util.Collections;
import java.util.ArrayList;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            HashMap<String, Integer> tags = new HashMap<>();
            int n = in.nextInt();
            for (int i = 0; i < n; i++) {
                in.next();
                int m = in.nextInt();
                int s = in.nextInt();
                for (int j = 0; j < m; j++) {
                    String t = in.next();
                    tags.put(t, s + tags.getOrDefault(t, 0));
                }
            }

            ArrayList<Map.Entry<String, Integer>> entries = new ArrayList<Map.Entry<String, Integer>>(tags.entrySet());
            Collections.sort(entries, new Comparator<Map.Entry<String, Integer>>() {

                public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
                    Integer val1 = o1.getValue();
                    Integer val2 = o2.getValue();
                    if (val1.equals(val2)) return o1.getKey().compareTo(o2.getKey());
                    else return val2.compareTo(val1);
                }
            });

            int count = Math.min(tags.size(), 10);
            for (int i = 0; i < count; i++) {
                out.println(entries.get(i).getKey() + " " + entries.get(i).getValue());
            }
        }

    }
}
0