結果

問題 No.1477 Lamps on Graph
ユーザー norikamenorikame
提出日時 2021-04-16 22:13:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 1,242 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 216,368 KB
実行使用メモリ 21,176 KB
最終ジャッジ日時 2024-07-03 02:05:32
合計ジャッジ時間 10,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 152 ms
11,648 KB
testcase_13 AC 157 ms
11,136 KB
testcase_14 AC 187 ms
12,800 KB
testcase_15 AC 71 ms
6,784 KB
testcase_16 AC 65 ms
8,704 KB
testcase_17 AC 68 ms
8,192 KB
testcase_18 AC 249 ms
17,152 KB
testcase_19 AC 157 ms
12,800 KB
testcase_20 AC 48 ms
5,760 KB
testcase_21 AC 213 ms
14,592 KB
testcase_22 AC 26 ms
5,376 KB
testcase_23 AC 89 ms
7,296 KB
testcase_24 AC 236 ms
14,720 KB
testcase_25 AC 64 ms
6,400 KB
testcase_26 AC 236 ms
16,640 KB
testcase_27 AC 84 ms
8,064 KB
testcase_28 AC 120 ms
11,264 KB
testcase_29 AC 113 ms
8,832 KB
testcase_30 AC 134 ms
10,368 KB
testcase_31 AC 86 ms
8,960 KB
testcase_32 AC 375 ms
21,176 KB
testcase_33 AC 323 ms
20,916 KB
testcase_34 AC 258 ms
11,220 KB
testcase_35 AC 336 ms
20,480 KB
testcase_36 AC 318 ms
20,480 KB
testcase_37 AC 265 ms
20,352 KB
testcase_38 AC 289 ms
20,480 KB
testcase_39 AC 329 ms
20,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

int main() {
	int n, m, k;
	cin >> n >> m;
	vector<int> a(n);
	map<int, vector<int>> aval;
	rep(i, n) {
		cin >> a[i];
		aval[a[i]].push_back(i);
	}
	vector<vector<int>> g(n);
	rep(i, m) {
		int ui, vi;
		cin >> ui >> vi;
		--ui; --vi;
		g[ui].push_back(vi);
		g[vi].push_back(ui);
	}
	cin >> k;
	vector<bool> sw(n);
	rep(i, k) {
		int bi;
		cin >> bi;
		--bi;
		sw[bi] = true;
	}
	vector<int> res;
	for (auto p : aval) {
		rep(i, (int)(p.second.size())) {
			if (sw[p.second[i]]) {
				res.push_back(p.second[i]+1);
				sw[p.second[i]] = false;
				rep(j, (int)(g[p.second[i]].size())) if (a[g[p.second[i]][j]] > a[p.second[i]]) {
					sw[g[p.second[i]][j]] = (!sw[g[p.second[i]][j]]);
				}
			}
		}
	}
	bool ok = true;
	rep(i, n) if (sw[i]) ok = false;
	if (ok) {
		cout << (int)(res.size()) << endl;
		rep(i, (int)(res.size())) cout << res[i] << endl;
	}
	else cout << -1 << endl;
	return 0;
}
0