結果

問題 No.1477 Lamps on Graph
ユーザー 小野寺健小野寺健
提出日時 2021-04-26 20:59:28
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,716 bytes
コンパイル時間 4,588 ms
コンパイル使用メモリ 80,600 KB
実行使用メモリ 92,732 KB
最終ジャッジ日時 2024-07-05 06:58:40
合計ジャッジ時間 28,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
46,428 KB
testcase_01 AC 104 ms
41,136 KB
testcase_02 AC 107 ms
41,440 KB
testcase_03 AC 99 ms
40,144 KB
testcase_04 AC 109 ms
41,172 KB
testcase_05 AC 109 ms
41,220 KB
testcase_06 AC 110 ms
41,264 KB
testcase_07 AC 104 ms
41,072 KB
testcase_08 AC 109 ms
41,236 KB
testcase_09 AC 102 ms
40,092 KB
testcase_10 AC 98 ms
40,260 KB
testcase_11 AC 105 ms
41,096 KB
testcase_12 AC 1,128 ms
66,288 KB
testcase_13 AC 1,134 ms
66,212 KB
testcase_14 AC 1,308 ms
70,572 KB
testcase_15 AC 774 ms
60,764 KB
testcase_16 AC 606 ms
56,784 KB
testcase_17 AC 642 ms
56,120 KB
testcase_18 AC 1,425 ms
67,312 KB
testcase_19 AC 1,138 ms
66,152 KB
testcase_20 AC 619 ms
51,944 KB
testcase_21 AC 1,361 ms
65,820 KB
testcase_22 AC 574 ms
50,924 KB
testcase_23 AC 890 ms
63,372 KB
testcase_24 AC 1,452 ms
72,764 KB
testcase_25 AC 654 ms
57,760 KB
testcase_26 AC 1,475 ms
72,524 KB
testcase_27 AC 821 ms
61,624 KB
testcase_28 AC 959 ms
64,376 KB
testcase_29 AC 895 ms
63,604 KB
testcase_30 AC 943 ms
62,348 KB
testcase_31 AC 753 ms
60,084 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 Peek(int i, int A) {
			this.i = i;
			this.A = A;
			V = new ArrayList<Integer>();
			B = false;
		}
	}

	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);
			}
		}
		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) {
			boolean noInput = true;
			for (int i : p.V) {
				if (p.A > A[i].A) {
					noInput = false;
				} 
			}
			if (noInput) {
				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);
				if (b) {
					m.B = !m.B;
				}
				boolean noInput = true;
				for (int j : m.V) {
					if (m.A > A[j].A) {
						noInput = false;
					} 
				}
				if (noInput) {
					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