結果

問題 No.1477 Lamps on Graph
ユーザー seven_threeseven_three
提出日時 2021-04-16 20:16:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 1,203 bytes
コンパイル時間 1,090 ms
コンパイル使用メモリ 105,752 KB
実行使用メモリ 11,772 KB
最終ジャッジ日時 2024-07-02 22:12:26
合計ジャッジ時間 7,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 125 ms
8,320 KB
testcase_13 AC 127 ms
7,936 KB
testcase_14 AC 157 ms
8,572 KB
testcase_15 AC 62 ms
6,944 KB
testcase_16 AC 46 ms
6,944 KB
testcase_17 AC 49 ms
6,940 KB
testcase_18 AC 176 ms
8,576 KB
testcase_19 AC 114 ms
8,064 KB
testcase_20 AC 44 ms
6,940 KB
testcase_21 AC 152 ms
7,932 KB
testcase_22 AC 26 ms
6,944 KB
testcase_23 AC 77 ms
7,300 KB
testcase_24 AC 189 ms
9,212 KB
testcase_25 AC 59 ms
6,940 KB
testcase_26 AC 172 ms
9,340 KB
testcase_27 AC 72 ms
7,296 KB
testcase_28 AC 94 ms
7,800 KB
testcase_29 AC 93 ms
7,424 KB
testcase_30 AC 101 ms
6,948 KB
testcase_31 AC 64 ms
7,036 KB
testcase_32 AC 274 ms
11,772 KB
testcase_33 AC 225 ms
11,260 KB
testcase_34 AC 265 ms
11,516 KB
testcase_35 AC 246 ms
10,872 KB
testcase_36 AC 243 ms
10,748 KB
testcase_37 AC 196 ms
10,748 KB
testcase_38 AC 205 ms
11,000 KB
testcase_39 AC 234 ms
10,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int a[100010], b[100010], in[100010];
vector<pair<int, int>> vec;
vector<vector<int>> v(100010);
vector<int> ans;
bool bo[100010] = { false };
int main() {
	int n, m;
	cin >> n >> m;
	for (int i = 1; i <= n; i++) {
		cin >> a[i];
		vec.emplace_back(make_pair(a[i], i));
	}
	sort(vec.begin(), vec.end());
	for (int i = 1; i <= n; i++) {
		in[i] = vec[i - 1].second;
	}
	for (int i = 0; i < m; i++) {
		int c, d;
		cin >> c >> d;
		v[c].emplace_back(d);
		v[d].emplace_back(c);
	}
	int k;
	cin >> k;
	for (int i = 0; i < k; i++) {
		int b1;
		cin >> b1;
		bo[b1] = true;
	}
	for (int i = 1; i <= n; i++) {
		if (bo[in[i]]) {
			bo[in[i]] = false;
			for (int j = 0; j < v[in[i]].size(); j++) {
				if (a[in[i]] < a[v[in[i]][j]]) {
					bo[v[in[i]][j]] = !bo[v[in[i]][j]];
				}
			}
			ans.emplace_back(in[i]);
		}
	}
	cout << ans.size() << endl;
	for (int i = 0; i < ans.size(); i++) {
		cout << ans[i] << endl;
	}
}
0