結果
問題 | No.812 Change of Class |
ユーザー | ks2m |
提出日時 | 2019-04-12 23:53:36 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,895 bytes |
コンパイル時間 | 3,294 ms |
コンパイル使用メモリ | 84,156 KB |
実行使用メモリ | 118,288 KB |
最終ジャッジ日時 | 2024-06-12 19:59:06 |
合計ジャッジ時間 | 13,566 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
ソースコード
import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Scanner; import java.util.Set; import java.util.TreeMap; public class Main { static TreeMap<Integer, Integer> ansMap = new TreeMap<Integer, Integer>(); public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); Map<Integer, Set<Integer>> map = new HashMap<Integer, Set<Integer>>(); for (int i = 0; i < m; i++) { int p = sc.nextInt(); int q = sc.nextInt(); if (map.containsKey(p)) { map.get(p).add(q); } else { Set<Integer> set = new HashSet<Integer>(); set.add(q); map.put(p, set); } if (map.containsKey(q)) { map.get(q).add(p); } else { Set<Integer> set = new HashSet<Integer>(); set.add(p); map.put(q, set); } } int q = sc.nextInt(); int[] a = new int[q]; for (int i = 0; i < q; i++) { a[i] = sc.nextInt(); } sc.close(); for (int i = 0; i < q; i++) { Set<Integer> set = map.get(a[i]); if (set == null) { System.out.println("0 0"); continue; } int cnt = set.size(); int d = 0; Set<Integer> baseSet = new HashSet<Integer>(); baseSet.addAll(set); Set<Integer> oldSet = baseSet; while (true) { Set<Integer> newSet = new HashSet<Integer>(); Integer[] arr = oldSet.toArray(new Integer[0]); for (int key : arr) { Set<Integer> val = map.get(key); baseSet.addAll(val); baseSet.remove(a[i]); newSet.addAll(val); newSet.remove(a[i]); } int cnt2 = baseSet.size(); if (cnt == cnt2) { if (d == 0) { System.out.println(cnt + " " + 0); } else { int d2 = 1; while (d >= 2) { d /= 2; d2++; } System.out.println(cnt + " " + d2); } break; } oldSet = newSet; cnt = cnt2; d++; } } } }