結果
問題 | No.2948 move move rotti |
ユーザー | Carpenters-Cat |
提出日時 | 2024-10-25 22:54:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 922 bytes |
コンパイル時間 | 2,473 ms |
コンパイル使用メモリ | 207,480 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-10-25 22:54:52 |
合計ジャッジ時間 | 7,024 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 60 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
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,816 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
#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"); }