結果

問題 No.2948 move move rotti
ユーザー kotatsugamekotatsugame
提出日時 2024-10-25 21:32:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 4,000 ms
コード長 822 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 71,060 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-25 21:32:59
合計ジャッジ時間 2,588 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 47 ms
6,820 KB
testcase_04 AC 9 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 9 ms
6,824 KB
testcase_08 AC 116 ms
6,816 KB
testcase_09 AC 115 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 4 ms
6,820 KB
testcase_13 AC 5 ms
6,820 KB
testcase_14 AC 5 ms
6,816 KB
testcase_15 AC 17 ms
6,820 KB
testcase_16 AC 93 ms
6,820 KB
testcase_17 AC 62 ms
6,820 KB
testcase_18 AC 85 ms
6,820 KB
testcase_19 AC 28 ms
6,820 KB
testcase_20 AC 42 ms
6,820 KB
testcase_21 AC 116 ms
6,816 KB
testcase_22 AC 13 ms
6,824 KB
testcase_23 AC 88 ms
6,820 KB
testcase_24 AC 9 ms
6,820 KB
testcase_25 AC 16 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
int N,M,K;
int X[15];
vector<int>G[15];
bool dp[1<<15][15];
int ok[15];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M>>K;
	for(int i=0;i<K;i++)
	{
		cin>>X[i];
		X[i]--;
	}
	for(int i=0;i<M;i++)
	{
		int u,v;cin>>u>>v;u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	for(int i=0;i<N;i++)ok[i]=(1<<N)-1;
	for(int i=0;i<K;i++)
	{
		for(int j=0;j<1<<N;j++)for(int k=0;k<N;k++)dp[j][k]=false;
		dp[1<<X[i]][X[i]]=true;
		int T[15]={};
		for(int j=1;j<1<<N;j++)for(int k=0;k<N;k++)if(dp[j][k])
		{
			T[__builtin_popcount(j)-1]|=1<<k;
			for(int v:G[k])if(!(j>>v&1))dp[j|1<<v][v]=true;
		}
		for(int j=0;j<N;j++)ok[j]&=T[j];
	}
	for(int i=0;i<N;i++)if(ok[i])
	{
		cout<<"Yes"<<endl;
		return 0;
	}
	cout<<"No"<<endl;
}
0