結果

問題 No.1477 Lamps on Graph
ユーザー tentententen
提出日時 2024-04-23 17:45:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 888 ms / 2,000 ms
コード長 2,416 bytes
コンパイル時間 4,014 ms
コンパイル使用メモリ 96,556 KB
実行使用メモリ 65,168 KB
最終ジャッジ日時 2024-10-15 18:22:47
合計ジャッジ時間 26,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
37,540 KB
testcase_01 AC 68 ms
38,064 KB
testcase_02 AC 71 ms
37,424 KB
testcase_03 AC 70 ms
37,900 KB
testcase_04 AC 68 ms
37,668 KB
testcase_05 AC 67 ms
37,848 KB
testcase_06 AC 70 ms
37,652 KB
testcase_07 AC 69 ms
38,044 KB
testcase_08 AC 69 ms
37,844 KB
testcase_09 AC 76 ms
37,820 KB
testcase_10 AC 71 ms
37,720 KB
testcase_11 AC 70 ms
37,516 KB
testcase_12 AC 556 ms
53,208 KB
testcase_13 AC 537 ms
53,192 KB
testcase_14 AC 647 ms
54,608 KB
testcase_15 AC 398 ms
49,764 KB
testcase_16 AC 386 ms
49,360 KB
testcase_17 AC 352 ms
48,684 KB
testcase_18 AC 656 ms
57,720 KB
testcase_19 AC 559 ms
53,736 KB
testcase_20 AC 324 ms
48,104 KB
testcase_21 AC 566 ms
56,448 KB
testcase_22 AC 268 ms
46,876 KB
testcase_23 AC 433 ms
51,300 KB
testcase_24 AC 706 ms
55,920 KB
testcase_25 AC 373 ms
49,584 KB
testcase_26 AC 648 ms
56,060 KB
testcase_27 AC 427 ms
50,708 KB
testcase_28 AC 491 ms
52,852 KB
testcase_29 AC 462 ms
50,836 KB
testcase_30 AC 482 ms
50,928 KB
testcase_31 AC 392 ms
50,416 KB
testcase_32 AC 840 ms
65,168 KB
testcase_33 AC 806 ms
62,388 KB
testcase_34 AC 623 ms
57,116 KB
testcase_35 AC 888 ms
64,876 KB
testcase_36 AC 878 ms
62,156 KB
testcase_37 AC 794 ms
59,512 KB
testcase_38 AC 812 ms
60,476 KB
testcase_39 AC 859 ms
61,508 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[] 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 = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            if (values[a] < values[b]) {
                graph.get(a).add(b);
            } else if (values[a] > values[b]) {
                graph.get(b).add(a);
            }
        }
        boolean[] isOn = new boolean[n];
        int k = sc.nextInt();
        while (k-- > 0) {
            isOn[sc.nextInt() - 1] = true;
        }
        PriorityQueue<Integer> queue = new PriorityQueue<>((a, b) -> values[a] - values[b]);
        for (int i = 0; i < n; i++) {
            queue.add(i);
        }
        List<Integer> ans = new ArrayList<>();
        while (queue.size() > 0) {
            int idx = queue.poll();
            if (isOn[idx]) {
                ans.add(idx + 1);
                for (int x : graph.get(idx)) {
                    isOn[x] ^= true;
                }
            }
        }
        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