結果

問題 No.2948 move move rotti
ユーザー kwm_tkwm_t
提出日時 2024-10-26 18:37:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,312 bytes
コンパイル時間 3,542 ms
コンパイル使用メモリ 260,808 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-26 18:37:52
合計ジャッジ時間 5,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n) - 1; i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
#ifdef _MSC_VER
#define __builtin_popcount (int)__popcnt
#define __builtin_popcountll (int)__popcnt64
inline int __builtin_ctz(unsigned int n) { unsigned long i; _BitScanForward(&i, n); return i; }
inline int __builtin_ctzll(unsigned long long n) { unsigned long i; _BitScanForward64(&i, n); return i; }
inline int __builtin_clz(unsigned int n) { unsigned long i; _BitScanReverse(&i, n); return i; }
inline int __builtin_clzll(unsigned long long n) { unsigned long i; _BitScanReverse64(&i, n); return i; }
#endif
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, m, k; cin >> n >> m >> k;
	vector<int>x(k);
	rep(i, k)cin >> x[i], x[i]--;
	vector to(n, vector<int>());
	rep(i, m) {
		int a, b; cin >> a >> b;
		a--, b--;
		to[a].push_back(b);
		to[b].push_back(a);
	}
	// dp[i][j][k]:= iがjにいて、集合がk
	vector dp(k, vector(n, vector<bool>(1 << n)));
	rep(i, k) dp[i][x[i]][1 << x[i]] = true;
	rep(i, k)rep(j, n)rep(k, 1 << n) {
		if (!dp[i][j][k])continue;
		int ni = i;
		for (auto nj : to[j]) {
			if (1 & (k >> nj))continue;
			int nk = k + (1 << nj);
			dp[ni][nj][nk] = true;
		}
	}
	vector bit(n + 1, vector<int>(n));//turn pos
	rep(i, k)rep(j, n)rep(k, 1 << n) {
		if (!dp[i][j][k])continue;
		int pc = __builtin_popcount(k);
		bit[pc][j] |= 1 << i;
	}
	bool chk = false;
	rep(i, n + 1) rep(j, n) {
		if ((1 << k) - 1 == bit[i][j])chk = true;
		//cout << i << " " << j << " " << bit[i][j] << endl;
	}
	cout << (chk ? "Yes" : "No") << endl;
	return 0;
}
0