結果
問題 | No.2948 move move rotti |
ユーザー | kwm_t |
提出日時 | 2024-10-26 18:54:09 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,313 bytes |
コンパイル時間 | 3,597 ms |
コンパイル使用メモリ | 259,632 KB |
実行使用メモリ | 40,192 KB |
最終ジャッジ日時 | 2024-10-26 18:54:21 |
合計ジャッジ時間 | 11,569 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | RE | - |
testcase_29 | AC | 3 ms
6,816 KB |
testcase_30 | RE | - |
ソースコード
#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, l; cin >> n >> m >> l; vector<int>x(l); rep(i, l)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(l, vector(1 << n, vector<bool>(n))); rep(i, l) dp[i][1 << x[i]][x[i]] = true; rep(i, l)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, l)rep(j, n)rep(k, 1 << n) { if (!dp[i][j][k])continue; int pc = __builtin_popcount(j); bit[pc][k] |= 1 << i; } bool chk = false; rep(i, n + 1) rep(j, n) { if ((1 << l) - 1 == bit[i][j])chk = true; //cout << i << " " << j << " " << bit[i][j] << endl; } cout << (chk ? "Yes" : "No") << endl; return 0; }