結果

問題 No.812 Change of Class
ユーザー kusomushikusomushi
提出日時 2019-07-10 02:06:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 547 ms / 4,000 ms
コード長 5,569 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 77,476 KB
実行使用メモリ 65,244 KB
最終ジャッジ日時 2023-09-03 15:35:50
合計ジャッジ時間 23,646 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 413 ms
62,556 KB
testcase_01 AC 195 ms
58,096 KB
testcase_02 AC 278 ms
60,484 KB
testcase_03 AC 386 ms
63,744 KB
testcase_04 AC 361 ms
63,320 KB
testcase_05 AC 508 ms
63,636 KB
testcase_06 AC 516 ms
62,364 KB
testcase_07 AC 92 ms
53,908 KB
testcase_08 AC 80 ms
52,812 KB
testcase_09 AC 519 ms
62,400 KB
testcase_10 AC 547 ms
62,472 KB
testcase_11 AC 198 ms
57,808 KB
testcase_12 AC 418 ms
63,728 KB
testcase_13 AC 71 ms
50,964 KB
testcase_14 AC 71 ms
51,328 KB
testcase_15 AC 418 ms
61,084 KB
testcase_16 AC 174 ms
55,344 KB
testcase_17 AC 414 ms
61,796 KB
testcase_18 AC 346 ms
58,828 KB
testcase_19 AC 357 ms
57,668 KB
testcase_20 AC 479 ms
61,532 KB
testcase_21 AC 340 ms
60,828 KB
testcase_22 AC 244 ms
59,936 KB
testcase_23 AC 168 ms
54,888 KB
testcase_24 AC 179 ms
57,304 KB
testcase_25 AC 229 ms
60,876 KB
testcase_26 AC 476 ms
61,084 KB
testcase_27 AC 443 ms
59,872 KB
testcase_28 AC 341 ms
57,544 KB
testcase_29 AC 214 ms
58,244 KB
testcase_30 AC 406 ms
62,172 KB
testcase_31 AC 397 ms
61,304 KB
testcase_32 AC 272 ms
58,436 KB
testcase_33 AC 427 ms
61,900 KB
testcase_34 AC 169 ms
56,700 KB
testcase_35 AC 221 ms
60,076 KB
testcase_36 AC 178 ms
57,772 KB
testcase_37 AC 295 ms
58,668 KB
testcase_38 AC 150 ms
56,912 KB
testcase_39 AC 299 ms
58,892 KB
testcase_40 AC 195 ms
57,832 KB
testcase_41 AC 143 ms
56,980 KB
testcase_42 AC 454 ms
62,724 KB
testcase_43 AC 228 ms
57,344 KB
testcase_44 AC 364 ms
58,880 KB
testcase_45 AC 179 ms
58,368 KB
testcase_46 AC 234 ms
59,680 KB
testcase_47 AC 369 ms
60,288 KB
testcase_48 AC 382 ms
60,336 KB
testcase_49 AC 239 ms
59,788 KB
testcase_50 AC 97 ms
52,792 KB
testcase_51 AC 216 ms
61,012 KB
testcase_52 AC 271 ms
61,052 KB
testcase_53 AC 196 ms
57,732 KB
testcase_54 AC 186 ms
56,920 KB
testcase_55 AC 317 ms
62,840 KB
testcase_56 AC 373 ms
60,308 KB
testcase_57 AC 365 ms
62,560 KB
testcase_58 AC 279 ms
58,236 KB
testcase_59 AC 392 ms
65,244 KB
testcase_60 AC 82 ms
53,548 KB
testcase_61 AC 66 ms
52,544 KB
testcase_62 AC 66 ms
51,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;
import java.util.StringJoiner;
import java.util.StringTokenizer;
import java.util.function.Function;

public class Main {

    static int N, M;
    static int[] U, V;
    static int Q;
    static int[] A;

    public static void main(String[] args) {
        FastScanner sc = new FastScanner(System.in);
        N = sc.nextInt();
        M = sc.nextInt();
        U = new int[M];
        V = new int[M];
        for (int i = 0; i < M; i++) {
            U[i] = sc.nextInt()-1;
            V[i] = sc.nextInt()-1;
        }
        Q = sc.nextInt();
        A = sc.nextIntArray(Q, -1);

        PrintWriter pw = new PrintWriter(System.out);
        solve(pw);
        pw.flush();
    }

    static void solve(PrintWriter pw) {
        int[][] G =  adjB(N, U, V);

        int[] ans = new int[Q];
        int[] q = new int[N];
        int[] dist = new int[N];
        for (int i = 0; i < Q; i++) {
            Arrays.fill(dist, Integer.MAX_VALUE);
            int u = 0, v = 0;
            q[v++] = A[i];
            dist[A[i]] = 0;
            int maxDist = 0;
            int cnt = 0;
            while( u != v ) {
                int a = q[u++];

                for (int b : G[a]) {
                    if( dist[b] > dist[a] + 1 ) {
                        dist[b] = dist[a] + 1;
                        q[v++] = b;
                        maxDist = Math.max(maxDist, dist[b]);
                        cnt++;
                    }
                }
            }

            int time;
            if( cnt == 0 ) {
                time = 0;
            } else if( maxDist <= 1 ) {
                time = 0;
            } else {
                time = log2(maxDist);
            }

            pw.println( cnt + " " + time);
        }
    }

    static int log2(int n) {
        int d = 2;
        int time = 1;
        while( d < n ) {
            time++;
            d*=2;
        }
        return time;
    }

    static int[][] adjB(int n, int[] from, int[] to) {
        int[][] adj = new int[n][];
        int[] cnt = new int[n];
        for (int f : from) {
            cnt[f]++;
        }
        for (int t : to) {
            cnt[t]++;
        }
        for (int i = 0; i < n; i++) {
            adj[i] = new int[cnt[i]];
        }
        for (int i = 0; i < from.length; i++) {
            adj[from[i]][--cnt[from[i]]] = to[i];
            adj[to[i]][--cnt[to[i]]] = from[i];
        }
        return adj;
    }

    @SuppressWarnings("unused")
    static class FastScanner {
        private BufferedReader reader;
        private StringTokenizer tokenizer;

        FastScanner(InputStream in) {
            reader = new BufferedReader(new InputStreamReader(in));
            tokenizer = null;
        }

        String next() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        String nextLine() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    return reader.readLine();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken("\n");
        }

        long nextLong() {
            return Long.parseLong(next());
        }

        int nextInt() {
            return Integer.parseInt(next());
        }

        int[] nextIntArray(int n) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt();
            return a;
        }

        int[] nextIntArray(int n, int delta) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt() + delta;
            return a;
        }

        long[] nextLongArray(int n) {
            long[] a = new long[n];
            for (int i = 0; i < n; i++)
                a[i] = nextLong();
            return a;
        }
    }

    static <A> void writeLines(A[] as, Function<A, String> f) {
        PrintWriter pw = new PrintWriter(System.out);
        for (A a : as) {
            pw.println(f.apply(a));
        }
        pw.flush();
    }

    static void writeLines(int[] as) {
        PrintWriter pw = new PrintWriter(System.out);
        for (int a : as) pw.println(a);
        pw.flush();
    }

    static void writeLines(long[] as) {
        PrintWriter pw = new PrintWriter(System.out);
        for (long a : as) pw.println(a);
        pw.flush();
    }

    static int max(int... as) {
        int max = Integer.MIN_VALUE;
        for (int a : as) max = Math.max(a, max);
        return max;
    }

    static int min(int... as) {
        int min = Integer.MAX_VALUE;
        for (int a : as) min = Math.min(a, min);
        return min;
    }

    static void debug(Object... args) {
        StringJoiner j = new StringJoiner(" ");
        for (Object arg : args) {
            if (arg instanceof int[]) j.add(Arrays.toString((int[]) arg));
            else if (arg instanceof long[]) j.add(Arrays.toString((long[]) arg));
            else if (arg instanceof double[]) j.add(Arrays.toString((double[]) arg));
            else if (arg instanceof Object[]) j.add(Arrays.toString((Object[]) arg));
            else j.add(arg.toString());
        }
        System.err.println(j.toString());
    }
}
0