#include <iostream>
#include <cstdio>
#include <algorithm>
#include <unordered_map>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
#define endl '\n'
#define ll long long
#define ull unsigned ll
#define pi pair<int, int>
#define f first
#define s second
const ull ha = 1000696969;
const int mxn = 1000001;
ll n, k, q;
int a[mxn], b[mxn], sz[mxn], par[mxn], rnk[mxn];
ull h[mxn], p[mxn];
gp_hash_table<ull, int> f;
int fnd(int x){ return x == par[x] ? x : par[x] = fnd(par[x]);}
void add(int x, int y){
if(!~y) k -= !!h[x] * sz[x] * f[-h[x]];
f[h[x]] += y * sz[x];
if(~y) k += !!h[x] * sz[x] * f[-h[x]];
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> q;
p[0] = 1;
for(int i = 1; i <= n; i++){
cin >> a[i];
b[i] = a[i], sz[i] = 1, par[i] = i;
p[i] = ha * p[i - 1];
}
sort(b + 1, b + n+ 1);
for(int i = 1; i <= n; i++) h[i] = p[a[i]] - p[b[i]], add(i, 1);
while(q--){
int t;
cin >> t;
if(!~-t){
int x, y, xx, yy;
cin >> x >> y;
xx = fnd(x), yy = fnd(y);
add(xx, -1), add(yy, -1);
h[xx] -= p[a[x]], h[yy] -= p[a[y]];
swap(a[x], a[y]);
h[xx] += p[a[x]], h[yy] += p[a[y]];
add(xx, 1), add(yy, 1);
}else if(t == 2){
int x, y;
cin >> x >> y;
x = fnd(x), y = fnd(y);
if(x != y){
if(rnk[x] < rnk[y]) swap(x, y);
rnk[x] += rnk[x] == rnk[y];
add(x, -1), add(y, -1);
par[y] = x, h[x] += h[y], sz[x] += sz[y];
add(x, 1);
}
}else if(t == 3){
cout << (f[0] == n ? "DA" : "NE") << endl;
}else{
cout << k << endl;
}
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
396 KB |
Output is correct |
2 |
Correct |
1 ms |
492 KB |
Output is correct |
3 |
Correct |
1 ms |
492 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
492 KB |
Output is correct |
2 |
Correct |
1 ms |
492 KB |
Output is correct |
3 |
Correct |
1 ms |
620 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
492 KB |
Output is correct |
2 |
Correct |
1 ms |
492 KB |
Output is correct |
3 |
Correct |
1 ms |
620 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
1004 KB |
Output is correct |
2 |
Correct |
4 ms |
1004 KB |
Output is correct |
3 |
Correct |
5 ms |
1132 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
48 ms |
4460 KB |
Output is correct |
2 |
Correct |
51 ms |
6500 KB |
Output is correct |
3 |
Correct |
70 ms |
13532 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
589 ms |
39936 KB |
Output is correct |
2 |
Correct |
1107 ms |
168332 KB |
Output is correct |
3 |
Correct |
1356 ms |
315484 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
842 ms |
112752 KB |
Output is correct |
2 |
Correct |
1004 ms |
112368 KB |
Output is correct |
3 |
Correct |
811 ms |
111940 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
641 ms |
43996 KB |
Output is correct |
2 |
Correct |
862 ms |
112496 KB |
Output is correct |
3 |
Correct |
798 ms |
111984 KB |
Output is correct |