# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
973202 |
2024-05-01T16:00:23 Z |
vladilius |
Joker (BOI20_joker) |
C++17 |
|
188 ms |
21576 KB |
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
#define pb push_back
#define ff first
#define ss second
struct dsu{
vector<pair<int&, int>> hist;
vector<int> sz, p;
int n, S;
dsu(int ns){
n = ns;
p.resize(2 * n + 1);
sz.resize(2 * n + 1);
for (int i = 1; i <= 2 * n; i++){
p[i] = i;
sz[i] = 1;
}
}
void save(){
S = (int) hist.size();
}
int get(int v){
if (p[v] != v){
return get(p[v]);
}
return v;
}
int op(int v){
return v + n;
}
void roll_back(){
while (hist.size() != S){
hist.back().ff = hist.back().ss;
hist.pop_back();
}
}
void unite(int x, int y){
x = get(x); y = get(y);
if (x == y) return;
if (sz[x] > sz[y]) swap(x, y);
hist.pb({p[x], p[x]});
hist.pb({sz[y], sz[y]});
p[x] = y;
sz[y] += sz[x];
}
bool add(pii P){
auto [x, y] = P;
if (!x) return 0;
unite(x, op(y));
unite(y, op(x));
return (get(x) == get(y));
}
};
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, M, q; cin>>n>>M>>q;
vector<pii> ed = {{0, 0}};
for (int i = 1; i <= M; i++){
int u, v; cin>>u>>v;
ed.pb({u, v});
}
dsu T(n);
T.save();
bool ind = false;
for (int i = 1; i <= M; i++){
ind = T.add(ed[i]);
}
if (!ind){
for (int i = 1; i <= q; i++){
cout<<"NO"<<"\n";
}
return 0;
}
T.roll_back();
vector<int> last(M + 1);
function<void(int, int, pii)> solve = [&](int l, int r, pii R){
if (l > r) return;
int m = (l + r) / 2;
T.save();
for (int i = l; i < m; i++){
T.add(ed[i]);
}
int j = 0;
for (int i = R.ss; i >= m; i--){
if (T.add(ed[i])){
j = i;
break;
}
}
assert(j > 0);
last[m] = j - 1;
T.roll_back();
T.save();
for (int i = last[m] + 1; i <= R.ss; i++){
T.add(ed[i]);
}
solve(l, m - 1, {R.ff, last[m]});
T.roll_back();
T.save();
for (int i = l; i <= m; i++){
T.add(ed[i]);
}
solve(m + 1, r, {last[m], R.ss});
T.roll_back();
};
for (int i = 1; i < M; i++){
assert(last[i] <= last[i + 1]);
}
solve(1, M, {0, M});
while (q--){
int l, r; cin>>l>>r;
cout<<((r <= last[l]) ? "YES" : "NO")<<"\n";
}
}
Compilation message
Joker.cpp: In member function 'void dsu::roll_back()':
Joker.cpp:35:28: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int&, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
35 | while (hist.size() != S){
| ~~~~~~~~~~~~^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
147 ms |
13636 KB |
Output is correct |
4 |
Correct |
50 ms |
21576 KB |
Output is correct |
5 |
Incorrect |
188 ms |
21316 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |