結果

問題 No.1477 Lamps on Graph
ユーザー Example0911Example0911
提出日時 2021-04-16 20:33:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,461 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 212,424 KB
実行使用メモリ 10,812 KB
最終ジャッジ日時 2024-07-02 22:56:30
合計ジャッジ時間 6,363 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,948 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 58 ms
6,940 KB
testcase_13 AC 63 ms
6,940 KB
testcase_14 AC 67 ms
6,940 KB
testcase_15 AC 26 ms
6,940 KB
testcase_16 AC 19 ms
6,944 KB
testcase_17 AC 23 ms
6,940 KB
testcase_18 AC 108 ms
7,800 KB
testcase_19 AC 58 ms
6,940 KB
testcase_20 AC 20 ms
6,940 KB
testcase_21 AC 91 ms
6,952 KB
testcase_22 AC 11 ms
6,940 KB
testcase_23 AC 35 ms
6,944 KB
testcase_24 AC 91 ms
7,424 KB
testcase_25 AC 27 ms
6,944 KB
testcase_26 AC 95 ms
7,836 KB
testcase_27 AC 30 ms
6,940 KB
testcase_28 AC 39 ms
6,944 KB
testcase_29 AC 45 ms
6,944 KB
testcase_30 AC 64 ms
6,944 KB
testcase_31 AC 35 ms
6,940 KB
testcase_32 AC 163 ms
10,812 KB
testcase_33 AC 118 ms
9,656 KB
testcase_34 AC 152 ms
7,756 KB
testcase_35 AC 116 ms
9,188 KB
testcase_36 AC 113 ms
9,320 KB
testcase_37 AC 78 ms
9,068 KB
testcase_38 AC 94 ms
9,188 KB
testcase_39 AC 109 ms
9,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#define int long long
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = 998244353;

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	int N, M; cin >> N >> M;
	vector<int>A(N); for (int i = 0; i < N; i++)cin >> A[i];
	vector<vector<int>>G(N);
	for (int i = 0; i < M; i++) {
		int u, v; cin >> u >> v; u--; v--;
		if (A[u] < A[v]) {
			G[u].push_back(v);
		}
		else if (A[u] > A[v]) {
			G[v].push_back(u);
		}
	}
	int K; cin >> K;
	vector<bool>now(N, false);
	for (int i = 0; i < K; i++) {
		int B; cin >> B; B--;
		now[B] = true;
	}
	vector<int>ans;
	vector<int>ind(N);
	for (int i = 0; i < N; i++) {
		for (auto x : G[i]) {
			ind[x]++;
		}
	}
	queue<int> que;
	for (int i = 0; i < N; i++) {  // 次数が0の点をキューに入れる
		if (ind[i] == 0) {
			que.push(i);
		}
	}
	while (!que.empty()) {  // 幅優先探索
		int t = que.front();
		ans.push_back(t);
		que.pop();
		for (auto e : G[t]) {
			ind[e]--;
			if (ind[e] == 0) {
				que.push(e);
			}
		}
	}
	if (ans.size() != N) {
		cout << -1 << endl; return 0;
	}
	int cnt = 0;
	vector<int>res;
	for (int i = 0; i < N; i++) {
		if (now[ans[i]]) {
			cnt++;
			res.push_back(ans[i] + 1);
			now[ans[i]] = false;
			for (auto v : G[ans[i]]) {
				if (now[v])now[v] = false;
				else now[v] = true;
			}
		}
	}
	cout << cnt << endl;
	for (int i = 0; i < cnt; i++) {
		cout << res[i] << endl;
	}
	return 0;
}
0