mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 16:28:47 +00:00
3237. [Ahoi2013] 连通图
https://hydro.ac/d/bzoj/record/63e4f2f1244901eb134f9255
This commit is contained in:
parent
c7f7bb6dcb
commit
faf4f402e7
109
BZOJ/3237/3237.cpp
Normal file
109
BZOJ/3237/3237.cpp
Normal file
@ -0,0 +1,109 @@
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
#include <iterator>
|
||||
#include <limits>
|
||||
#include <random>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 1e5 + 5,
|
||||
M = 2e5 + 5;
|
||||
|
||||
int n, m, q, s[N], d[M];
|
||||
std::mt19937 rng(std::random_device{}());
|
||||
std::vector<std::pair<int, int>> g[N];
|
||||
bool vis[N];
|
||||
|
||||
template <typename T>
|
||||
class liner_base : private std::vector<T> {
|
||||
public:
|
||||
liner_base()
|
||||
: std::vector<T>(std::numeric_limits<T>::digits + 1, 0) {}
|
||||
|
||||
bool insert(T w) {
|
||||
for (int i = std::numeric_limits<T>::digits; i >= 0; --i) {
|
||||
if (!(w >> i)) continue;
|
||||
|
||||
if (!this->at(i)) {
|
||||
this->at(i) = w;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
w ^= this->at(i);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
T query_min(T w) {
|
||||
for (int i = std::numeric_limits<T>::digits; i >= 0; --i) {
|
||||
if (!((w >> i) & 1)) continue;
|
||||
|
||||
w ^= this->at(i);
|
||||
}
|
||||
|
||||
return w;
|
||||
}
|
||||
};
|
||||
|
||||
void dfs(int u, int f) {
|
||||
vis[u] = true;
|
||||
|
||||
for (auto e : g[u]) {
|
||||
int v = e.first,
|
||||
id = e.second;
|
||||
|
||||
if (!vis[v]) {
|
||||
dfs(v, u);
|
||||
|
||||
s[u] ^= s[v];
|
||||
d[id] ^= s[v];
|
||||
} else if (v != f && !d[id]) {
|
||||
d[id] = rng();
|
||||
|
||||
s[u] ^= d[id];
|
||||
s[v] ^= d[id];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
cin.tie(nullptr);
|
||||
|
||||
cin >> n >> m;
|
||||
|
||||
for (int i = 1, u, v; i <= m; i++) {
|
||||
cin >> u >> v;
|
||||
|
||||
g[u].emplace_back(v, i);
|
||||
g[v].emplace_back(u, i);
|
||||
}
|
||||
|
||||
dfs(1, 1);
|
||||
|
||||
cin >> q;
|
||||
|
||||
while (q--) {
|
||||
int c;
|
||||
liner_base<int> lb;
|
||||
bool ans = true;
|
||||
|
||||
cin >> c;
|
||||
|
||||
for (int i = 1, x; i <= c; i++) {
|
||||
cin >> x;
|
||||
|
||||
ans &= lb.insert(d[x]);
|
||||
}
|
||||
|
||||
cout << (ans ? "Connected" : "Disconnected") << endl;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
BIN
BZOJ/3237/data/1.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/1.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/1.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/1.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/10.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/10.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/10.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/10.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/11.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/11.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/11.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/11.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/12.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/12.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/12.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/12.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/13.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/13.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/13.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/13.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/14.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/14.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/14.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/14.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/15.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/15.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/15.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/15.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/16.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/16.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/16.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/16.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/17.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/17.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/17.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/17.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/18.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/18.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/18.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/18.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/19.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/19.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/19.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/19.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/2.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/2.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/2.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/2.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/20.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/20.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/20.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/20.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/3.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/3.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/3.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/3.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/4.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/4.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/4.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/4.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/5.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/5.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/5.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/5.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/6.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/6.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/6.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/6.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/7.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/7.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/7.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/7.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/8.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/8.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/8.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/8.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/9.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/9.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/3237/data/9.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/3237/data/9.out
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user