#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 1e6 + 5;
int n, m, a[N], b[N];
int p[N], sz[N];
long long ha[N], hb[N], P[N], ans;
map < long long, int > q;
int dsu_get(int v){
return p[v] == v ? v : p[v] = dsu_get(p[v]);
}
inline void upd(int val, long long hsh, int sz){
if(hsh != 0){
ans += val * sz * q[-hsh];
}
q[hsh] += val * sz;
}
inline void dsu_unite(int x, int y){
x = dsu_get(x);
y = dsu_get(y);
if(x == y){
return;
}
upd(-1, hb[x] - ha[x], sz[x]);
upd(-1, hb[y] - ha[y], sz[y]);
p[y] = x;
ha[x] += ha[y];
hb[x] += hb[y];
sz[x] += sz[y];
upd(+1, hb[x] - ha[x], sz[x]);
}
inline void dsu_upd(int val, int x, int y, int z){
hb[x] += val * P[y];
ha[x] += val * P[z];
sz[x] += val;
}
main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
P[0] = 1;
for(int i = 1; i < N; i++){
P[i] = P[i - 1] * 1234577;
}
cin >> n >> m;
for(int i = 1; i <= n; i++){
cin >> a[i];
b[i] = a[i];
p[i] = i;
sz[i] = 1;
}
sort(b + 1, b + n + 1);
for(int i = 1; i <= n; i++){
hb[i] = P[b[i]];
ha[i] = P[a[i]];
upd(+1, hb[i] - ha[i], +1);
}
while(m--){
int type;
cin >> type;
if(type == 1){
int x, y;
cin >> x >> y;
int px = dsu_get(x),
py = dsu_get(y);
if(px == py){
swap(a[x], a[y]);
continue;
}
upd(-1, hb[px] - ha[px], sz[px]);
upd(-1, hb[py] - ha[py], sz[py]);
dsu_upd(-1, dsu_get(x), x, a[x]);
dsu_upd(-1, dsu_get(y), y, a[y]);
swap(a[x], a[y]);
dsu_upd(+1, dsu_get(y), y, a[y]);
dsu_upd(+1, dsu_get(x), x, a[x]);
upd(+1, hb[py] - ha[py], sz[py]);
upd(+1, hb[px] - ha[px], sz[px]);
}
else if(type == 2){
int x, y;
cin >> x >> y;
dsu_unite(x, y);
}
else if(type == 3){
cout << (q[0] == n ? "DA\n" : "NE\n");
}
else{
cout << ans << "\n";
}
}
}
Compilation message
zamjene.cpp:49:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
8192 KB |
Output is correct |
2 |
Correct |
8 ms |
8192 KB |
Output is correct |
3 |
Correct |
9 ms |
8192 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
12 ms |
8192 KB |
Output is correct |
2 |
Correct |
9 ms |
8192 KB |
Output is correct |
3 |
Correct |
8 ms |
8236 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
8192 KB |
Output is correct |
2 |
Correct |
10 ms |
8192 KB |
Output is correct |
3 |
Correct |
11 ms |
8320 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
11 ms |
8320 KB |
Output is correct |
2 |
Correct |
10 ms |
8320 KB |
Output is correct |
3 |
Correct |
11 ms |
8320 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
8320 KB |
Output is correct |
2 |
Correct |
10 ms |
8320 KB |
Output is correct |
3 |
Correct |
10 ms |
8320 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
15 ms |
8832 KB |
Output is correct |
2 |
Correct |
11 ms |
8952 KB |
Output is correct |
3 |
Correct |
16 ms |
8952 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
102 ms |
13292 KB |
Output is correct |
2 |
Correct |
136 ms |
15064 KB |
Output is correct |
3 |
Correct |
247 ms |
18256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1828 ms |
48100 KB |
Output is correct |
2 |
Execution timed out |
6058 ms |
127628 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4019 ms |
96988 KB |
Output is correct |
2 |
Execution timed out |
6031 ms |
112772 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1463 ms |
62776 KB |
Output is correct |
2 |
Correct |
4438 ms |
102024 KB |
Output is correct |
3 |
Correct |
2608 ms |
105720 KB |
Output is correct |