結果

問題 No.2948 move move rotti
ユーザー tentententen
提出日時 2024-10-28 09:56:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,588 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 95,428 KB
実行使用メモリ 51,412 KB
最終ジャッジ日時 2024-10-28 09:56:58
合計ジャッジ時間 7,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
51,244 KB
testcase_01 AC 76 ms
51,052 KB
testcase_02 AC 71 ms
51,292 KB
testcase_03 AC 80 ms
51,284 KB
testcase_04 AC 73 ms
51,104 KB
testcase_05 AC 78 ms
51,260 KB
testcase_06 AC 77 ms
51,268 KB
testcase_07 AC 77 ms
51,276 KB
testcase_08 AC 87 ms
51,148 KB
testcase_09 AC 87 ms
51,228 KB
testcase_10 AC 83 ms
51,060 KB
testcase_11 WA -
testcase_12 AC 76 ms
51,256 KB
testcase_13 AC 74 ms
51,212 KB
testcase_14 AC 72 ms
51,312 KB
testcase_15 AC 77 ms
50,868 KB
testcase_16 WA -
testcase_17 AC 76 ms
51,368 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 82 ms
51,284 KB
testcase_21 AC 88 ms
50,940 KB
testcase_22 AC 77 ms
51,220 KB
testcase_23 AC 81 ms
51,364 KB
testcase_24 AC 76 ms
51,368 KB
testcase_25 AC 80 ms
51,288 KB
testcase_26 AC 74 ms
51,236 KB
testcase_27 AC 73 ms
51,248 KB
testcase_28 AC 78 ms
51,336 KB
testcase_29 AC 72 ms
51,272 KB
testcase_30 AC 75 ms
51,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        int[] starts = new int[k];
        for (int i = 0; i < k; i++) {
            starts[i] = sc.nextInt() - 1;
        }
        List<List<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        int[][] costs = new int[k][n];
        Deque<Path> deq = new ArrayDeque<>();
        for (int i = 0; i < k; i++) {
            Arrays.fill(costs[i], Integer.MAX_VALUE);
            deq.add(new Path(starts[i], 0));
            while (deq.size() > 0) {
                Path p = deq.poll();
                if (costs[i][p.idx] <= p.value) {
                    continue;
                }
                costs[i][p.idx]  = p.value;
                for (int x : graph.get(p.idx)) {
                    deq.add(new Path(x, p.value + 1));
                }
            }
        }
        System.out.println(IntStream.range(0, n).filter(i -> costs[0][i] < Integer.MAX_VALUE)
            .anyMatch(i -> IntStream.range(0, k)
                .allMatch(j -> costs[j][i] == costs[0][i]))
            ? "Yes" : "No");
    }
    
    static class Path {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0