結果
問題 | No.2948 move move rotti |
ユーザー | Tatsu_mr |
提出日時 | 2024-10-25 22:54:45 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,176 bytes |
コンパイル時間 | 3,491 ms |
コンパイル使用メモリ | 265,296 KB |
実行使用メモリ | 10,020 KB |
最終ジャッジ日時 | 2024-10-25 22:54:54 |
合計ジャッジ時間 | 9,155 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <bits/stdc++.h> #define For(i, a, b) for(long long i = a; i < b; i++) #define rep(i, n) For(i, 0, n) #define rFor(i, a, b) for(long long i = a; i >= b; i--) #define ALL(v) (v).begin(), (v).end() #define rALL(v) (v).rbegin(), (v).rend() using namespace std; using lint = long long; using ld = long double; int INF = 2000000000; lint LINF = 1000000000000000000; template <class T> struct Edge { int from, to; T cost; int idx; Edge() {} Edge(int to_) : to(to_) {} Edge(int to_, T cost_) : to(to_), cost(cost_) {} Edge(int from_, int to_, int idx_) : from(from_), to(to_), idx(idx_) {} Edge(int from_, int to_, T cost_, int idx_) : from(from_), to(to_), cost(cost_), idx(idx_) {} }; template <class T> using Graph = vector<vector<Edge<T>>>; using graph = Graph<long long>; using edge = Edge<long long>; #define add emplace_back int main() { int n, m, k; cin >> n >> m >> k; vector<int> x(k); rep(i, k) { cin >> x[i]; x[i]--; } Graph<int> g(n); rep(_, m) { int u, v; cin >> u >> v; u--; v--; g[u].add(v); g[v].add(u); } vector<vector<set<int>>> dist(n, vector<set<int>>(n)); vector<bool> done(n, false); rep(i, k) { if (done[x[i]]) { continue; } done[x[i]] = true; vector<bool> visit(n, false); auto dfs = [&](auto dfs, int v, int d) -> void { visit[v] = true; dist[x[i]][v].insert(d); for (auto e : g[v]) { int nv = e.to; if (visit[nv]) { continue; } dfs(dfs, nv, d + 1); } visit[v] = false; }; dfs(dfs, x[i], 0); } rep(goal, n) { rep(d, 18) { bool ok = true; for (int start : x) { if (!dist[start][goal].count(d)) { ok = false; break; } } if (ok) { cout << "Yes" << endl; return 0; } } } cout << "No" << endl; }