結果

問題 No.1477 Lamps on Graph
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 21:49:55
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,733 bytes
コンパイル時間 3,312 ms
コンパイル使用メモリ 78,284 KB
実行使用メモリ 93,124 KB
最終ジャッジ日時 2024-07-05 07:49:55
合計ジャッジ時間 30,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
45,044 KB
testcase_01 AC 107 ms
40,784 KB
testcase_02 AC 108 ms
41,180 KB
testcase_03 AC 98 ms
40,476 KB
testcase_04 AC 107 ms
41,032 KB
testcase_05 AC 107 ms
41,316 KB
testcase_06 AC 108 ms
40,992 KB
testcase_07 AC 102 ms
39,848 KB
testcase_08 AC 108 ms
41,108 KB
testcase_09 AC 106 ms
41,124 KB
testcase_10 AC 109 ms
41,176 KB
testcase_11 AC 97 ms
40,156 KB
testcase_12 AC 1,184 ms
74,032 KB
testcase_13 AC 1,156 ms
72,628 KB
testcase_14 AC 1,254 ms
76,024 KB
testcase_15 AC 800 ms
60,372 KB
testcase_16 AC 701 ms
57,764 KB
testcase_17 AC 680 ms
57,716 KB
testcase_18 AC 1,503 ms
73,712 KB
testcase_19 AC 1,192 ms
72,592 KB
testcase_20 AC 598 ms
53,280 KB
testcase_21 AC 1,374 ms
70,696 KB
testcase_22 AC 575 ms
51,304 KB
testcase_23 AC 859 ms
65,980 KB
testcase_24 AC 1,623 ms
81,408 KB
testcase_25 AC 763 ms
58,444 KB
testcase_26 AC 1,432 ms
78,004 KB
testcase_27 AC 873 ms
64,740 KB
testcase_28 AC 979 ms
72,072 KB
testcase_29 AC 961 ms
66,556 KB
testcase_30 AC 985 ms
63,644 KB
testcase_31 AC 789 ms
61,364 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;

public class No1477 {
	
	private static class Peek {
		public int i, A;
		public List<Integer> V;
		public boolean B;
		public List<Integer> input;
		public Peek(int i, int A) {
			this.i = i;
			this.A = A;
			V = new ArrayList<Integer>();
			B = false;
			input = new ArrayList<Integer>();
		}
	}

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		Peek[] A = new Peek[N];
		for (int i=0; i < N; i++) {
			A[i] = new Peek(i, scan.nextInt());
		}
		for (int i = 0; i < M; i++) {
			int u = scan.nextInt() - 1;
			int v = scan.nextInt() - 1;
			if (A[u].A > A[v].A) {
				A[u].V.add(v);
				A[v].V.add(u);
				A[u].input.add(v);
			} else if (A[u].A < A[v].A) {
				A[u].V.add(v);
				A[v].V.add(u);
				A[v].input.add(u);			
			}
		}
		int K = scan.nextInt();
		for (int i = 0; i < K; i++) {
			int b = scan.nextInt() - 1;
			A[b].B = true;
		}
		scan.close();
		List<Peek> S = new ArrayList<Peek>();
		for (Peek p : A) {
			if (p.input.isEmpty()) {
				S.add(p);
			}
		}
		List<Integer> op = new ArrayList<Integer>();
		while(!S.isEmpty()) {
			Peek n = S.remove(0);
			boolean b = n.B;
			if (b) {
				n.B = false;
				op.add(n.i + 1);
			}
			for (int i : n.V) {
				Peek m = A[i];
				m.V.remove((Object)n.i);
				m.input.remove((Object)n.i);
				if (b) {
					m.B = !m.B;
				}
				if (m.input.isEmpty()) {
					S.add(m);
				}
			}
		}
		boolean b = false;
		for (Peek p : A) {
			b |= p.B;
		}
		if (b) {
			System.out.println(-1);
		} else {
			System.out.println(op.size());
			for (int p : op) {
				System.out.println(p);
			}
		}
	}

}
0