結果

問題 No.2948 move move rotti
ユーザー KudeKude
提出日時 2024-10-25 21:40:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 223 ms / 4,000 ms
コード長 1,699 bytes
コンパイル時間 3,645 ms
コンパイル使用メモリ 281,652 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-25 21:40:40
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 89 ms
6,820 KB
testcase_04 AC 170 ms
6,820 KB
testcase_05 AC 2 ms
6,824 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 171 ms
6,816 KB
testcase_08 AC 217 ms
6,820 KB
testcase_09 AC 220 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 6 ms
6,820 KB
testcase_13 AC 68 ms
6,820 KB
testcase_14 AC 70 ms
6,820 KB
testcase_15 AC 31 ms
6,820 KB
testcase_16 AC 177 ms
6,820 KB
testcase_17 AC 88 ms
6,820 KB
testcase_18 AC 199 ms
6,824 KB
testcase_19 AC 147 ms
6,824 KB
testcase_20 AC 158 ms
6,820 KB
testcase_21 AC 223 ms
6,816 KB
testcase_22 AC 138 ms
6,820 KB
testcase_23 AC 201 ms
6,816 KB
testcase_24 AC 142 ms
6,820 KB
testcase_25 AC 133 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, m, k;
  cin >> n >> m >> k;
  VI x(k);
  rep(i, k) cin >> x[i], x[i]--;
  VVI to(n);
  rep(_, m) {
    int u, v;
    cin >> u >> v;
    u--, v--;
    to[u].emplace_back(v);
    to[v].emplace_back(u);
  }
  vector<vector<char>> oks;
  rep(i, n + 1) oks.emplace_back(n, true);
  for (int x : x) {
    vector<array<bool, 15>> dp(1 << n), ndp;
    dp[1 << x][x] = true;
    rep(i, n + 1) {
      rep(u, n) {
        bool found = false;
        rep(s, 1 << n) if (dp[s][u]) {
          found = true;
          break;
        }
        oks[i][u] &= found;
      }
      if (i == n) break;
      ndp.assign(1 << n, {});
      rep(s, 1 << n) rep(u, n) if (dp[s][u]) {
        for (int v : to[u]) if (!(s >> v & 1)) {
          ndp[s | 1 << v][v] = true;
        }
      }
      swap(dp, ndp);
    }
  }
  bool ans = false;
  rep(i, n + 1) rep(u, n) ans |= oks[i][u];
  cout << (ans ? "Yes\n" : "No\n");
}
0