結果

問題 No.1477 Lamps on Graph
ユーザー seven_threeseven_three
提出日時 2021-04-16 20:14:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,137 bytes
コンパイル時間 914 ms
コンパイル使用メモリ 105,148 KB
実行使用メモリ 11,772 KB
最終ジャッジ日時 2024-07-02 22:10:07
合計ジャッジ時間 6,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 WA -
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 WA -
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 104 ms
8,316 KB
testcase_13 AC 103 ms
8,064 KB
testcase_14 AC 131 ms
8,828 KB
testcase_15 AC 52 ms
7,040 KB
testcase_16 AC 40 ms
7,036 KB
testcase_17 AC 43 ms
6,940 KB
testcase_18 AC 163 ms
8,696 KB
testcase_19 AC 99 ms
8,188 KB
testcase_20 AC 37 ms
6,940 KB
testcase_21 AC 139 ms
8,184 KB
testcase_22 AC 26 ms
6,940 KB
testcase_23 AC 72 ms
7,296 KB
testcase_24 AC 159 ms
9,212 KB
testcase_25 AC 51 ms
6,940 KB
testcase_26 AC 157 ms
9,340 KB
testcase_27 AC 63 ms
7,408 KB
testcase_28 AC 75 ms
7,804 KB
testcase_29 AC 80 ms
7,552 KB
testcase_30 AC 97 ms
7,032 KB
testcase_31 AC 55 ms
7,040 KB
testcase_32 AC 256 ms
11,772 KB
testcase_33 AC 209 ms
11,260 KB
testcase_34 WA -
testcase_35 AC 205 ms
11,004 KB
testcase_36 AC 194 ms
10,876 KB
testcase_37 AC 154 ms
10,748 KB
testcase_38 AC 173 ms
10,880 KB
testcase_39 AC 195 ms
10,996 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]]) {
			for (int j = 0; j < v[in[i]].size(); 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