結果

問題 No.1477 Lamps on Graph
ユーザー tentententen
提出日時 2021-04-28 09:19:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 2,415 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 80,164 KB
実行使用メモリ 62,792 KB
最終ジャッジ日時 2024-07-07 04:15:06
合計ジャッジ時間 19,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,772 KB
testcase_01 AC 45 ms
37,160 KB
testcase_02 AC 45 ms
37,056 KB
testcase_03 AC 46 ms
36,776 KB
testcase_04 AC 45 ms
37,292 KB
testcase_05 AC 44 ms
36,784 KB
testcase_06 AC 44 ms
36,664 KB
testcase_07 AC 44 ms
36,992 KB
testcase_08 AC 45 ms
36,868 KB
testcase_09 AC 44 ms
37,064 KB
testcase_10 AC 44 ms
37,108 KB
testcase_11 AC 46 ms
37,136 KB
testcase_12 AC 408 ms
54,068 KB
testcase_13 AC 400 ms
54,208 KB
testcase_14 AC 456 ms
55,556 KB
testcase_15 AC 281 ms
49,392 KB
testcase_16 AC 266 ms
47,752 KB
testcase_17 AC 267 ms
47,368 KB
testcase_18 AC 571 ms
57,492 KB
testcase_19 AC 381 ms
54,308 KB
testcase_20 AC 245 ms
46,200 KB
testcase_21 AC 382 ms
55,072 KB
testcase_22 AC 197 ms
45,516 KB
testcase_23 AC 317 ms
51,668 KB
testcase_24 AC 477 ms
57,336 KB
testcase_25 AC 312 ms
49,620 KB
testcase_26 AC 461 ms
57,432 KB
testcase_27 AC 310 ms
51,016 KB
testcase_28 AC 342 ms
53,028 KB
testcase_29 AC 333 ms
52,800 KB
testcase_30 AC 331 ms
50,144 KB
testcase_31 AC 284 ms
49,480 KB
testcase_32 AC 608 ms
62,792 KB
testcase_33 AC 555 ms
62,096 KB
testcase_34 AC 433 ms
58,336 KB
testcase_35 AC 571 ms
61,784 KB
testcase_36 AC 634 ms
61,872 KB
testcase_37 AC 562 ms
60,992 KB
testcase_38 AC 552 ms
60,456 KB
testcase_39 AC 597 ms
62,028 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();
        int m = sc.nextInt();
        int[] values = new int[n];
        Lamp[] lamps = new Lamp[n];
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            lamps[i] = new Lamp(i, values[i]);
            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);
            }
            if (values[b] < values[a]) {
                graph.get(b).add(a);
            }
        }
        int k = sc.nextInt();
        boolean[] ons = new boolean[n];
        for (int i = 0; i < k; i++) {
            ons[sc.nextInt() - 1] = true;
        }
        Arrays.sort(lamps);
        ArrayList<Integer> ans = new ArrayList<>();
        for (Lamp x : lamps) {
            if (ons[x.idx]) {
                ans.add(x.idx + 1);
                for (int y : graph.get(x.idx)) {
                    ons[y] ^= true;
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        sb.append(ans.size()).append("\n");
        for (int x : ans) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Lamp implements Comparable<Lamp> {
        int idx;
        int value;
        
        public Lamp(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Lamp 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