結果

問題 No.1477 Lamps on Graph
ユーザー 小野寺健
提出日時 2021-04-26 21:43:30
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,781 bytes
コンパイル時間 3,523 ms
コンパイル使用メモリ 78,292 KB
実行使用メモリ 81,544 KB
最終ジャッジ日時 2024-07-05 07:42:14
合計ジャッジ時間 31,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30 TLE * 1 -- * 7
権限があれば一括ダウンロードができます

ソースコード

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 boolean noInput;
		public Peek(int i, int A) {
			this.i = i;
			this.A = A;
			V = new ArrayList<Integer>();
			B = false;
			noInput = true;
		}
	}

	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].noInput = false;
			} else if (A[u].A < A[v].A) {
				A[u].V.add(v);
				A[v].V.add(u);
				A[v].noInput = false;				
			}
		}
		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.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