結果

問題 No.1477 Lamps on Graph
ユーザー gojira_kugojira_ku
提出日時 2021-04-16 21:04:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 2,553 bytes
コンパイル時間 2,549 ms
コンパイル使用メモリ 209,296 KB
実行使用メモリ 10,684 KB
最終ジャッジ日時 2024-07-02 23:55:09
合計ジャッジ時間 9,101 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,760 KB
testcase_01 AC 3 ms
5,888 KB
testcase_02 AC 4 ms
5,760 KB
testcase_03 AC 5 ms
5,888 KB
testcase_04 AC 5 ms
5,888 KB
testcase_05 AC 5 ms
5,888 KB
testcase_06 AC 4 ms
5,760 KB
testcase_07 AC 5 ms
5,760 KB
testcase_08 AC 4 ms
5,888 KB
testcase_09 AC 5 ms
5,888 KB
testcase_10 AC 5 ms
6,016 KB
testcase_11 AC 4 ms
5,888 KB
testcase_12 AC 119 ms
7,356 KB
testcase_13 AC 124 ms
7,424 KB
testcase_14 AC 143 ms
7,552 KB
testcase_15 AC 58 ms
6,656 KB
testcase_16 AC 40 ms
6,656 KB
testcase_17 AC 43 ms
6,528 KB
testcase_18 AC 171 ms
7,892 KB
testcase_19 AC 112 ms
7,296 KB
testcase_20 AC 43 ms
6,528 KB
testcase_21 AC 154 ms
7,608 KB
testcase_22 AC 27 ms
6,272 KB
testcase_23 AC 75 ms
6,912 KB
testcase_24 AC 179 ms
8,200 KB
testcase_25 AC 56 ms
6,656 KB
testcase_26 AC 166 ms
7,980 KB
testcase_27 AC 64 ms
6,784 KB
testcase_28 AC 81 ms
7,168 KB
testcase_29 AC 86 ms
7,040 KB
testcase_30 AC 101 ms
6,688 KB
testcase_31 AC 60 ms
6,528 KB
testcase_32 AC 290 ms
10,684 KB
testcase_33 AC 234 ms
9,520 KB
testcase_34 AC 258 ms
7,768 KB
testcase_35 AC 233 ms
9,160 KB
testcase_36 AC 222 ms
8,920 KB
testcase_37 AC 163 ms
8,576 KB
testcase_38 AC 187 ms
8,576 KB
testcase_39 AC 218 ms
9,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _DEBUG
#include "bits/stdc++.h"
//#include <atcoder/all>
#define CHOOSE(a) CHOOSE2 a
#define CHOOSE2(a0,a1,a2,a3,a4,a5,x,...) x
#define debug_1(x1) cout<<#x1<<": "<<x1<<endl
#define debug_2(x1,x2) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<endl
#define debug_3(x1,x2,x3) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<endl
#define debug_4(x1,x2,x3,x4) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<", "#x4<<": "<<x4<<endl
#define debug_5(x1,x2,x3,x4,x5) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<", "#x4<<": "<<x4<<", "#x5<<": "<<x5<<endl
#define debug_6(x1,x2,x3,x4,x5,x6) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<", "#x4<<": "<<x4<<", "#x5<<": "<<x5<<", "#x6<<": "<<x6<<endl
#ifdef _DEBUG
#define debug(...) CHOOSE((__VA_ARGS__,debug_6,debug_5,debug_4,debug_3,debug_2,debug_1,~))(__VA_ARGS__)
#else
#define debug(...)
#endif
#define rep(index,num) for(int index=0;index<(int)num;index++)
#define rep1(index,num) for(int index=1;index<=(int)num;index++)
#define brep(index,num) for(int index=(int)num-1;index>=0;index--)
#define brep1(index,num) for(int index=(int)num;index>0;index--)
#define scan(argument) cin>>argument
#define prin(argument) cout<<argument<<endl
#define kaigyo cout<<endl
#define eps 1e-7
#define mp(a1,a2) make_pair(a1,a2)
#define ALL(a) (a).begin(),(a).end()
#define rALL(a) (a).rbegin(),(a).rend()
#define puba(a) emplace_back(a)
#define pubamp(a,b) emplace_back(mp(a,b))
typedef long long ll;
typedef long double ld;
using namespace std;
//using namespace atcoder;
typedef pair<ll,ll> pll;
typedef pair<int,int> pint;
typedef vector<int> vint;
typedef vector<ll> vll;
typedef vector<pint> vpint;
typedef vector<pll> vpll;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
ll INFl=(ll)1e+18+1;
int INF=1e+9+1;
vint adj[100001];
bool on[100001];
int A[100001];
int main(){
	int N,M;
	scan(N>>M);
	rep(i,N) scan(A[i]);
	rep(i,M){
		int u,v;
		scan(u>>v);
		u--; v--;
		if(A[u]<A[v]) adj[u].puba(v);
		if(A[v]<A[u]) adj[v].puba(u);
	}
	priority_queue<pint> pq;
	int K;
	scan(K);
	rep(k,K){
		int u;
		scan(u);
		u--;
		on[u]=1;
		pq.push(mp(-A[u],u));
	}
	vint ans;
	while(!pq.empty()){
		int u=pq.top().second;
		pq.pop();
		if(!on[u]){
			continue;
		}
		on[u]=0;
		ans.puba(u);
		for(const auto& v:adj[u]){
			on[v]^=1;
			if(on[v]) pq.push(mp(-A[v],v));
		}
	}
	prin(ans.size());
	for(const auto& u:ans){
		prin(u+1);
	}
	return 0;
}
0