結果

問題 No.1477 Lamps on Graph
ユーザー startcppstartcpp
提出日時 2021-04-16 20:18:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 774 ms
コンパイル使用メモリ 80,888 KB
実行使用メモリ 11,416 KB
最終ジャッジ日時 2024-07-02 22:17:28
合計ジャッジ時間 6,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 120 ms
8,192 KB
testcase_13 AC 122 ms
7,816 KB
testcase_14 AC 147 ms
8,576 KB
testcase_15 AC 59 ms
7,132 KB
testcase_16 AC 44 ms
7,040 KB
testcase_17 AC 47 ms
6,944 KB
testcase_18 AC 173 ms
8,280 KB
testcase_19 AC 116 ms
8,108 KB
testcase_20 AC 43 ms
6,940 KB
testcase_21 AC 148 ms
7,768 KB
testcase_22 AC 27 ms
6,940 KB
testcase_23 AC 79 ms
7,472 KB
testcase_24 AC 179 ms
9,080 KB
testcase_25 AC 57 ms
6,940 KB
testcase_26 AC 168 ms
9,148 KB
testcase_27 AC 69 ms
7,424 KB
testcase_28 AC 86 ms
7,936 KB
testcase_29 AC 87 ms
7,400 KB
testcase_30 AC 99 ms
6,940 KB
testcase_31 AC 61 ms
6,944 KB
testcase_32 AC 267 ms
11,416 KB
testcase_33 AC 220 ms
10,908 KB
testcase_34 AC 257 ms
11,296 KB
testcase_35 AC 237 ms
10,628 KB
testcase_36 AC 230 ms
10,496 KB
testcase_37 AC 182 ms
10,544 KB
testcase_38 AC 199 ms
10,632 KB
testcase_39 AC 232 ms
10,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//小さな数から操作して、大きな数を後に回せば、全部消灯させることができる。
#include <iostream>
#include <vector>
#include <algorithm>
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;
typedef pair<int, int> P;

int n, m;
int a[100000];
vector<int> et[100000];
bool on[100000];

signed main() {
	int i, j;
	
	cin >> n >> m;
	rep(i, n) cin >> a[i];
	rep(i, m) {
		int u, v;
		 cin >> u >> v; u--; v--;
		 et[u].push_back(v);
		 et[v].push_back(u);
	}
	
	int K; cin >> K;
	rep(i, K) { int b; cin >> b; b--; on[b] = true; }
	
	vector<P> vec;
	rep(i, n) { vec.push_back(P(a[i], i)); }
	sort(vec.begin(), vec.end());
	
	vector<int> ans;
	rep(i, n) {
		int id = vec[i].second;
		if (on[id] == false) continue;
		ans.push_back(id);
		on[id] = false;
		rep(j, et[id].size()) {
			int v = et[id][j];
			if (a[v] > a[id]) on[v] = !on[v];
		}
	}
	
	cout << ans.size() << endl;
	rep(i, ans.size()) {
		cout << ans[i] + 1 << endl;
	}
	return 0;
}
0