結果

問題 No.812 Change of Class
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-04-15 22:24:43
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,107 bytes
コンパイル時間 3,008 ms
コンパイル使用メモリ 92,132 KB
実行使用メモリ 107,384 KB
最終ジャッジ日時 2024-06-12 21:10:46
合計ジャッジ時間 22,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,225 ms
105,356 KB
testcase_01 AC 791 ms
66,700 KB
testcase_02 AC 1,798 ms
83,504 KB
testcase_03 AC 2,323 ms
103,856 KB
testcase_04 AC 2,528 ms
100,728 KB
testcase_05 TLE -
testcase_06 AC 3,845 ms
91,956 KB
testcase_07 AC 649 ms
70,624 KB
testcase_08 AC 412 ms
60,056 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,524 ms
86,500 KB
testcase_12 AC 3,541 ms
103,852 KB
testcase_13 AC 167 ms
54,424 KB
testcase_14 AC 170 ms
54,360 KB
testcase_15 TLE -
testcase_16 AC 602 ms
65,092 KB
testcase_17 AC 3,122 ms
94,264 KB
testcase_18 AC 2,586 ms
85,084 KB
testcase_19 AC 2,972 ms
89,748 KB
testcase_20 TLE -
testcase_21 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.stream.Collectors;
import java.util.stream.IntStream;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        
        int n = stdin.nextInt();
        int m = stdin.nextInt();
        
        List<List<Integer>> friend = IntStream.range(0, n).mapToObj(unused -> new ArrayList<Integer>()).collect(Collectors.toList());
        for (int i = 0; i < m; i++) {
            int p = stdin.nextInt() - 1;
            int q = stdin.nextInt() - 1;
            friend.get(p).add(q);
            friend.get(q).add(p);
        }
        
        int q = stdin.nextInt();
        List<Integer> alist = new ArrayList<>();
        for (int i = 0; i < q; i++) {
            int a = stdin.nextInt() - 1;
            alist.add(a);
        }
        
        int inf = 1000000007;
        for (int a : alist) {
            List<Integer> d = IntStream.range(0, n).map(unused -> inf).boxed().collect(Collectors.toList());
            d.set(a, 0);
            
            PriorityQueue<Integer> pq = new PriorityQueue<>(Comparator.comparingInt(i -> d.get(i)));
            IntStream.range(0, n).forEach(i -> pq.offer(i));
            
            while (!pq.isEmpty()) {
                int x = pq.poll();
                for (int y : friend.get(x)) {
                    if (d.get(x) + 1 < d.get(y)) {
                        d.set(y, d.get(x) + 1);
                        pq.offer(y);
                    }
                }
            }
            
            int b = 0;
            int c = 0;
            for (int v : d) {
                if (v != 0 && v != inf) {
                    b++;
                    c = Math.max(c, v);
                }
            }
            
            if (c == 0) {
                System.out.printf("%d %d%n", b, c);
            } else {
                System.out.printf("%d %d%n", b, (int)Math.ceil(Math.log(c) / Math.log(2)));
            }
        }
    }
}
0