結果

問題 No.1424 Ultrapalindrome
ユーザー tentententen
提出日時 2021-08-05 10:31:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 2,621 bytes
コンパイル時間 4,935 ms
コンパイル使用メモリ 78,392 KB
実行使用メモリ 78,000 KB
最終ジャッジ日時 2024-09-16 15:16:39
合計ジャッジ時間 11,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,020 KB
testcase_01 AC 54 ms
50,220 KB
testcase_02 AC 52 ms
49,852 KB
testcase_03 AC 51 ms
50,180 KB
testcase_04 AC 51 ms
49,992 KB
testcase_05 AC 52 ms
50,176 KB
testcase_06 AC 52 ms
50,144 KB
testcase_07 AC 52 ms
50,136 KB
testcase_08 AC 53 ms
50,272 KB
testcase_09 AC 301 ms
62,896 KB
testcase_10 AC 304 ms
64,672 KB
testcase_11 AC 257 ms
60,440 KB
testcase_12 AC 296 ms
62,672 KB
testcase_13 AC 172 ms
55,688 KB
testcase_14 AC 265 ms
62,652 KB
testcase_15 AC 56 ms
50,368 KB
testcase_16 AC 247 ms
60,236 KB
testcase_17 AC 271 ms
62,628 KB
testcase_18 AC 321 ms
62,600 KB
testcase_19 AC 441 ms
62,672 KB
testcase_20 AC 203 ms
56,156 KB
testcase_21 AC 347 ms
63,808 KB
testcase_22 AC 275 ms
60,132 KB
testcase_23 AC 155 ms
54,940 KB
testcase_24 AC 190 ms
55,924 KB
testcase_25 AC 190 ms
55,556 KB
testcase_26 AC 441 ms
63,992 KB
testcase_27 AC 374 ms
72,428 KB
testcase_28 AC 314 ms
65,592 KB
testcase_29 AC 418 ms
73,676 KB
testcase_30 AC 504 ms
75,380 KB
testcase_31 AC 494 ms
78,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < n - 1; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        for (int i = 0; i < n; i++) {
            if (graph.get(i).size() > 2) {
                queue.add(new Path(i, 0));
            }
        }
        if (queue.size() == 0) {
            System.out.println("Yes");
            return;
        } else if (queue.size() > 1) {
            System.out.println("No");
            return;
        }
        int[] costs = new int[n];
        Arrays.fill(costs, Integer.MAX_VALUE);
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (costs[p.idx] <= p.value) {
                continue;
            }
            costs[p.idx] = p.value;
            for (int x : graph.get(p.idx)) {
                queue.add(new Path(x, p.value + 1));
            }
        }
        int base = -1;
        for (int i = 0; i < n; i++) {
            if (graph.get(i).size() == 1) {
                if (base == -1 || base == costs[i]) {
                    base = costs[i];
                } else {
                    System.out.println("No");
                    return;
                }
            }
        }
        System.out.println("Yes");
    }
    
    static class Path implements Comparable<Path> {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            return value - another.value;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0