結果
問題 | No.1983 [Cherry 4th Tune C] 南の島のマーメイド |
ユーザー | ナミネコ |
提出日時 | 2022-10-20 11:38:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,312 bytes |
コンパイル時間 | 3,682 ms |
コンパイル使用メモリ | 231,488 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-06-30 05:31:38 |
合計ジャッジ時間 | 12,333 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
9,612 KB |
testcase_01 | AC | 5 ms
9,604 KB |
testcase_02 | AC | 5 ms
9,500 KB |
testcase_03 | AC | 6 ms
9,436 KB |
testcase_04 | AC | 5 ms
9,616 KB |
testcase_05 | AC | 5 ms
9,640 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | TLE | - |
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 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using mint = modint1000000007; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repf(i, n, flag) for (int i = 0; i < (int)(n) && flag; i++) #define all(v) v.begin(), v.end() using EDGE = vector<int>; using GRAPH = vector<EDGE>; int n; GRAPH g(int(2e5)); vector<bool> visited(int(2e5)); vector<int> vec; dsu st(int(2e5)); dsu edge(int(2e5)); void dfs(int pos, int pre) { for(int x : g[pos]) { if(x == pre) continue; if(visited[x]) { for(int i = vec.size() - 1; i >= 0; i--) { if(vec[i] == x) break; st.merge(vec[i], x); } } else { vec.push_back(x); visited[x] = true; dfs(x, pos); vec.pop_back(); } } if(st.size(pos) == 1) for(int x : g[pos]) edge.merge(pos, x); } int main() { int m, q; cin >> n >> m >> q; rep(i, m) { int u, v; cin >> u >> v; u--; v--; g[u].push_back(v); g[v].push_back(u); } dfs(0, -1); rep(i, q) { int x, y; cin >> x >> y; x--; y--; cout << (edge.same(x, y) ? "Yes" : "No") << endl; } return 0; }