結果

問題 No.1477 Lamps on Graph
ユーザー kotatsugamekotatsugame
提出日時 2021-04-24 04:57:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 79,820 KB
実行使用メモリ 10,700 KB
最終ジャッジ日時 2024-07-04 08:58:43
合計ジャッジ時間 8,738 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 113 ms
8,064 KB
testcase_13 AC 117 ms
7,808 KB
testcase_14 AC 140 ms
8,192 KB
testcase_15 AC 57 ms
7,328 KB
testcase_16 AC 42 ms
7,072 KB
testcase_17 AC 45 ms
7,056 KB
testcase_18 AC 166 ms
8,132 KB
testcase_19 AC 110 ms
7,936 KB
testcase_20 AC 40 ms
7,168 KB
testcase_21 AC 145 ms
7,680 KB
testcase_22 AC 26 ms
6,948 KB
testcase_23 AC 74 ms
7,688 KB
testcase_24 AC 169 ms
8,740 KB
testcase_25 AC 54 ms
7,296 KB
testcase_26 AC 163 ms
8,576 KB
testcase_27 AC 65 ms
7,544 KB
testcase_28 AC 84 ms
7,692 KB
testcase_29 AC 83 ms
7,480 KB
testcase_30 AC 98 ms
7,112 KB
testcase_31 AC 61 ms
7,040 KB
testcase_32 AC 262 ms
10,700 KB
testcase_33 AC 214 ms
9,728 KB
testcase_34 AC 247 ms
7,800 KB
testcase_35 AC 222 ms
9,472 KB
testcase_36 AC 212 ms
9,472 KB
testcase_37 AC 167 ms
9,412 KB
testcase_38 AC 194 ms
9,472 KB
testcase_39 AC 216 ms
9,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N,M;
vector<int>G[1<<17];
bool on[1<<17];
main()
{
	cin>>N>>M;
	vector<pair<int,int> >A(N);
	for(int i=0;i<N;i++)
	{
		cin>>A[i].first;
		A[i].second=i;
	}
	for(int i=0;i<M;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		if(A[u].first>A[v].first)swap(u,v);
		if(A[u].first<A[v].first)G[u].push_back(v);
	}
	int K;cin>>K;
	for(;K--;)
	{
		int b;cin>>b;
		on[b-1]=true;
	}
	vector<int>ans;
	sort(A.begin(),A.end());
	for(pair<int,int>p:A)
	{
		int u=p.second;
		if(on[u])
		{
			ans.push_back(u);
			for(int v:G[u])on[v]=!on[v];
		}
	}
	cout<<ans.size()<<endl;
	for(int u:ans)cout<<u+1<<endl;
}
0