結果

問題 No.1477 Lamps on Graph
ユーザー tentententen
提出日時 2024-07-29 11:58:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,388 bytes
コンパイル時間 3,697 ms
コンパイル使用メモリ 92,160 KB
実行使用メモリ 81,568 KB
最終ジャッジ日時 2024-07-29 11:58:40
合計ジャッジ時間 26,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
50,756 KB
testcase_01 AC 67 ms
50,812 KB
testcase_02 AC 70 ms
50,924 KB
testcase_03 AC 65 ms
50,732 KB
testcase_04 AC 66 ms
50,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 68 ms
51,168 KB
testcase_08 WA -
testcase_09 AC 67 ms
50,812 KB
testcase_10 AC 65 ms
51,172 KB
testcase_11 AC 73 ms
51,156 KB
testcase_12 AC 560 ms
66,188 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 371 ms
62,068 KB
testcase_16 AC 325 ms
58,500 KB
testcase_17 AC 310 ms
60,172 KB
testcase_18 WA -
testcase_19 AC 547 ms
65,532 KB
testcase_20 AC 338 ms
60,880 KB
testcase_21 AC 591 ms
67,116 KB
testcase_22 AC 269 ms
60,132 KB
testcase_23 AC 452 ms
62,312 KB
testcase_24 WA -
testcase_25 AC 417 ms
61,936 KB
testcase_26 WA -
testcase_27 AC 416 ms
62,736 KB
testcase_28 AC 443 ms
64,520 KB
testcase_29 AC 482 ms
63,084 KB
testcase_30 AC 438 ms
65,372 KB
testcase_31 AC 358 ms
61,992 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 660 ms
68,948 KB
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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[] values = new int[n];
        List<List<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            graph.add(new ArrayList<>());
        }
        for (int i = 1; i <= m; i++) {
            int left = sc.nextInt() - 1;
            int right = sc.nextInt() - 1;
            if (values[left] < values[right]) {
                graph.get(left).add(right);
            } else if (values[left] > values[right]) {
                graph.get(right).add(left);
            }
        }
        int k = sc.nextInt();
        TreeSet<Integer> queue = new TreeSet<>((a, b) -> values[a] - values[b]);
        while (k-- > 0) {
            queue.add(sc.nextInt() - 1);
        }
        List<Integer> ans = new ArrayList<>();
        while (queue.size() > 0) {
            int x = queue.pollFirst();
            ans.add(x + 1);
            for (int y : graph.get(x)) {
                if (queue.contains(y)) {
                    queue.remove(y);
                } else {
                    queue.add(y);
                }
            }
        }
        System.out.println(ans.size());
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining("\n")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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