結果

問題 No.1477 Lamps on Graph
ユーザー 沙耶花沙耶花
提出日時 2021-04-16 20:07:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 4,531 ms
コンパイル使用メモリ 268,948 KB
実行使用メモリ 11,656 KB
最終ジャッジ日時 2024-07-02 21:57:35
合計ジャッジ時間 10,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 123 ms
7,040 KB
testcase_13 AC 122 ms
6,944 KB
testcase_14 AC 150 ms
7,704 KB
testcase_15 AC 59 ms
6,940 KB
testcase_16 AC 43 ms
6,944 KB
testcase_17 AC 45 ms
6,944 KB
testcase_18 AC 174 ms
8,364 KB
testcase_19 AC 115 ms
7,216 KB
testcase_20 AC 42 ms
6,940 KB
testcase_21 AC 153 ms
7,416 KB
testcase_22 AC 25 ms
6,940 KB
testcase_23 AC 76 ms
6,944 KB
testcase_24 AC 179 ms
8,268 KB
testcase_25 AC 55 ms
6,944 KB
testcase_26 AC 171 ms
8,712 KB
testcase_27 AC 68 ms
6,940 KB
testcase_28 AC 87 ms
6,940 KB
testcase_29 AC 88 ms
6,940 KB
testcase_30 AC 97 ms
6,940 KB
testcase_31 AC 60 ms
6,940 KB
testcase_32 AC 270 ms
11,604 KB
testcase_33 AC 226 ms
11,224 KB
testcase_34 AC 261 ms
11,656 KB
testcase_35 AC 241 ms
10,832 KB
testcase_36 AC 234 ms
10,832 KB
testcase_37 AC 188 ms
10,580 KB
testcase_38 AC 205 ms
10,704 KB
testcase_39 AC 236 ms
10,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int N,M;
	cin>>N>>M;
	
	vector<int> A(N);
	vector<pair<int,int>> P;
	rep(i,N){
		cin>>A[i];
		P.emplace_back(A[i],i);
	}
	
	vector<vector<int>> E(N);
	rep(i,M){
		int u,v;
		cin>>u>>v;
		u--;v--;
		E[u].push_back(v);
		E[v].push_back(u);
	}
	
	vector<int> b(N,0);
	int K;
	cin>>K;
	
	rep(i,K){
		int B;
		cin>>B;
		b[B-1] = 1;
	}
	
	sort(P.begin(),P.end());
	vector<int> ans;
	
	rep(i,P.size()){
		int ind = P[i].second;
		if(b[ind]){
			ans.push_back(ind+1);
			b[ind] ^= 1;
			rep(j,E[ind].size()){
				if(A[ind] < A[E[ind][j]]){
					b[E[ind][j]] ^= 1;
				}
			}
		}
	}
	
	cout<<ans.size()<<endl;
	rep(i,ans.size()){
		cout<<ans[i]<<endl;
	}
	
    return 0;
}
0