結果

問題 No.2948 move move rotti
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-10-25 22:55:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 924 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 208,584 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-25 22:55:27
合計ジャッジ時間 4,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 WA -
testcase_04 AC 63 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 58 ms
6,816 KB
testcase_08 AC 63 ms
6,820 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,816 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 60 ms
6,816 KB
testcase_14 AC 60 ms
6,816 KB
testcase_15 AC 60 ms
6,816 KB
testcase_16 WA -
testcase_17 AC 62 ms
6,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 61 ms
6,816 KB
testcase_21 AC 61 ms
6,816 KB
testcase_22 AC 60 ms
6,816 KB
testcase_23 AC 62 ms
6,816 KB
testcase_24 AC 61 ms
6,816 KB
testcase_25 AC 61 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 WA -
testcase_29 AC 2 ms
6,816 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N, M, K;
	cin >> N >> M >> K;
	std::vector<int> X(K);
	for (auto& x : X) {
		cin >> x;
		x --;
	}
	vector<vector<int>> gr(N);
	while (M--) {
		int a, b;
		cin >> a >> b;
		gr[--a].push_back(--b);
	}
	int cg[15][15];
	for (int b = 0; b < N; b ++) {
		cg[b][0] = (1 << b);
		for (int i = 1; i < N; i ++) cg[b][i] = 0;
		vector dp((1 << N), vector<int>(N, 0));
		dp[1 << b][b] = 1;
		for (int s = (1 << b); s < (1 << N); s ++) {
			for (int i = 0; i < N; i ++) {
				if (!dp[s][i]) continue;
				int n = 0;
				for (int p = 0; p < N; p ++) n += ((s >> p) & 1);
				cg[b][n-1] |= (1 << i);
				for (auto& v : gr[i]) {
					if (!((s >> v) & 1)) {
						dp[s ^ (1 << v)][v] = 1;
					}
				}
			}
		}
	}
	for (int d = 0; d < N; d ++) {
		int x = (1 << N) - 1;
		for (auto& k : X) {
			x &= cg[k][d];
		}
		if (x) {
			puts("Yes");
			return 0;
		}
	}
	puts("No");
}
0