結果
問題 | No.812 Change of Class |
ユーザー | htensai |
提出日時 | 2020-02-14 18:26:47 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,681 bytes |
コンパイル時間 | 3,156 ms |
コンパイル使用メモリ | 83,692 KB |
実行使用メモリ | 79,904 KB |
最終ジャッジ日時 | 2024-06-12 22:00:39 |
合計ジャッジ時間 | 43,666 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | AC | 629 ms
72,004 KB |
testcase_56 | AC | 791 ms
79,604 KB |
testcase_57 | AC | 727 ms
79,488 KB |
testcase_58 | AC | 524 ms
66,536 KB |
testcase_59 | AC | 802 ms
79,904 KB |
testcase_60 | AC | 53 ms
50,060 KB |
testcase_61 | WA | - |
testcase_62 | WA | - |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main (String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 2); int n = Integer.parseInt(first[0]); int m = Integer.parseInt(first[1]); ArrayList<Integer>[] graph = new ArrayList[n]; for (int i = 0; i < n; i++) { graph[i] = new ArrayList<>(); } for (int i = 0; i < m; i++) { String[] line = br.readLine().split(" ", 2); int a = Integer.parseInt(line[0]) - 1; int b = Integer.parseInt(line[1]) - 1; graph[a].add(b); graph[b].add(a); } int q = Integer.parseInt(br.readLine()); StringBuilder sb = new StringBuilder(); ArrayDeque<Integer> next = new ArrayDeque<>(); ArrayDeque<Integer> day = new ArrayDeque<>(); for (int i = 0; i < q; i++) { int x = Integer.parseInt(br.readLine()) - 1; int[] friends = new int[n]; Arrays.fill(friends, Integer.MAX_VALUE / 10); next.add(x); day.add(0); while (next.size() > 0) { int y = next.poll(); int z = day.poll(); if (friends[y] > z) { friends[y] = z; for (int a : graph[y]) { next.add(a); day.add(z + 1); } } } int count = 0; int max = 0; for (int j = 0; j < n; j++) { if (friends[j] < Integer.MAX_VALUE / 10) { count++; max = Math.max(max, friends[j]); } } sb.append(count - 1).append(" ").append(max - 1).append("\n"); } System.out.print(sb); } }