結果
問題 | No.628 Tagの勢い |
ユーザー | YamaKasa |
提出日時 | 2018-03-31 03:28:22 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 278 ms / 2,000 ms |
コード長 | 2,251 bytes |
コンパイル時間 | 3,602 ms |
コンパイル使用メモリ | 82,988 KB |
実行使用メモリ | 60,232 KB |
最終ジャッジ日時 | 2024-10-07 22:40:50 |
合計ジャッジ時間 | 7,797 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 150 ms
54,840 KB |
testcase_01 | AC | 160 ms
54,816 KB |
testcase_02 | AC | 139 ms
54,492 KB |
testcase_03 | AC | 154 ms
54,968 KB |
testcase_04 | AC | 131 ms
54,580 KB |
testcase_05 | AC | 125 ms
54,588 KB |
testcase_06 | AC | 143 ms
54,752 KB |
testcase_07 | AC | 160 ms
55,092 KB |
testcase_08 | AC | 170 ms
55,152 KB |
testcase_09 | AC | 156 ms
55,072 KB |
testcase_10 | AC | 177 ms
55,468 KB |
testcase_11 | AC | 170 ms
55,136 KB |
testcase_12 | AC | 278 ms
59,904 KB |
testcase_13 | AC | 277 ms
60,184 KB |
testcase_14 | AC | 272 ms
60,072 KB |
testcase_15 | AC | 276 ms
60,232 KB |
testcase_16 | AC | 258 ms
60,080 KB |
testcase_17 | AC | 153 ms
54,732 KB |
testcase_18 | AC | 154 ms
54,660 KB |
ソースコード
import java.util.HashMap; import java.util.Scanner; import java.util.Set; public class Tag { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); int []No = new int[N]; int []S = new int[N]; //String str[][] = new String[N][]; HashMap<Integer, HashMap<Integer, String>> strD2 = new HashMap<Integer, HashMap<Integer, String>>(); for(int i = 0; i < N; i++) { No[i] = scanner.nextInt(); int M = scanner.nextInt(); S[i] = scanner.nextInt(); HashMap<Integer, String> strD1 = new HashMap<Integer, String>(); for(int j = 0; j < M; j++) { String s = scanner.next(); strD1.put(j, s); } strD2.put(i, strD1); } scanner.close(); HashMap<String, Integer> pointHM = new HashMap<String,Integer>(); pointHM.put(strD2.get(0).get(0), 0); int k; String key; for(int i = 0; i < N; i++) { k = strD2.get(i).size(); for(int j = 0; j < k; j++) { key = strD2.get(i).get(j); if(pointHM.containsKey(key)) { int s = pointHM.get(key); pointHM.put(key, s + S[i]); }else { pointHM.put(key, S[i]); } } } Set<String> pointSet = pointHM.keySet(); String s = pointSet.toString().substring(1, pointSet.toString().length() - 1); String[] arrayKey = s.split("[\\s]*,[\\s]*"); int keyLen = arrayKey.length; int[]point = new int[keyLen]; for(int i = 0; i < keyLen; i++) { point[i] = pointHM.get(arrayKey[i]); } int v; int j; String temp; for(int i = 1; i < keyLen; i++) { v = point[i]; temp = arrayKey[i]; j = i - 1; while( j >= 0 && arrayKey[j].compareTo(temp) > 0) { arrayKey[j + 1] = arrayKey[j]; point[j + 1] = point[j]; j--; } arrayKey[j + 1] = temp; point[j + 1] = v; } for(int i = 1; i < keyLen; i++) { v = point[i]; temp = arrayKey[i]; j = i - 1; while( j >= 0 && point[j] < v) { arrayKey[j + 1] = arrayKey[j]; point[j + 1] = point[j]; j--; } arrayKey[j + 1] = temp; point[j + 1] = v; } if(keyLen > 10) { for(int i = 0; i < 10; i++) { System.out.println(arrayKey[i] + " " + point[i]); } }else { for(int i = 0; i < keyLen; i++) { System.out.println(arrayKey[i] + " " + point[i]); } } } }