結果
問題 | No.2948 move move rotti |
ユーザー | kwm_t |
提出日時 | 2024-10-26 18:46:40 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 172 ms / 4,000 ms |
コード長 | 2,313 bytes |
コンパイル時間 | 3,376 ms |
コンパイル使用メモリ | 259,068 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-26 18:46:45 |
合計ジャッジ時間 | 5,658 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 64 ms
6,820 KB |
testcase_04 | AC | 22 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 21 ms
6,820 KB |
testcase_08 | AC | 153 ms
6,820 KB |
testcase_09 | AC | 172 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 3 ms
6,820 KB |
testcase_12 | AC | 5 ms
6,820 KB |
testcase_13 | AC | 12 ms
6,820 KB |
testcase_14 | AC | 10 ms
6,816 KB |
testcase_15 | AC | 21 ms
6,816 KB |
testcase_16 | AC | 126 ms
6,816 KB |
testcase_17 | AC | 59 ms
6,820 KB |
testcase_18 | AC | 114 ms
6,820 KB |
testcase_19 | AC | 47 ms
6,820 KB |
testcase_20 | AC | 65 ms
6,820 KB |
testcase_21 | AC | 160 ms
6,816 KB |
testcase_22 | AC | 29 ms
6,816 KB |
testcase_23 | AC | 112 ms
6,816 KB |
testcase_24 | AC | 22 ms
6,816 KB |
testcase_25 | AC | 32 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | AC | 3 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 2 ms
6,820 KB |
ソースコード
#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(n, vector<bool>(1 << n))); rep(i, l) dp[i][x[i]][1 << x[i]] = true; rep(i, l)rep(k, 1 << n) rep(j, 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(k); bit[pc][j] |= 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; }