#include <bits/stdc++.h>
#define FOR(i, u, v) for (int i = u; i <= v; i++)
#define FORD(i, v, u) for (int i = v; i >= u; i--)
#define ll long long
#define pill pair<int, ll>
#define PB push_back
#define mp make_pair
#define F first
#define S second
#define N 1000005
#define BASE 97
#define maxc 1000000007
#define mid (r + l)/2
using namespace std;
int n, numQ, a[N], b[N], sz[N], numCC, cc, root[N];
ll val[2][N], ansType4, base[N];
map<ll, int> ma;
void setup()
{
cin >> n >> numQ; cc = n;
FOR(i, 1, n) cin >> a[i], b[i] = a[i];
}
void subcc(int u)
{
ll Val = val[0][u] - val[1][u];
if (Val == 0)
{
numCC--;
return;
}
ansType4 -= 1ll*sz[u]*ma[-Val];
ma[Val] -= sz[u];
}
void addcc(int u)
{
ll Val = val[0][u] - val[1][u];
if (Val == 0)
{
numCC++;
return;
}
ansType4 += 1ll*sz[u]*ma[-Val];
ma[Val] += sz[u];
}
void prepare()
{
sort(b+1, b+n+1);
base[0] = 1;
FOR(i, 1, N-1) base[i] = base[i-1]*BASE;
FOR(i, 1, n)
{
sz[i] = 1;
val[0][i] = base[a[i]];
val[1][i] = base[b[i]];
addcc(i);
}
}
int get_root(int u)
{
return (root[u] == 0) ? u : root[u] = get_root(root[u]);
}
void inline add(ll &A, ll B) {A += B;}
void inline sub(ll &A, ll B) {A -= B;}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
//freopen("INP.TXT", "r", stdin);
//freopen("OUT.TXT", "w", stdout);
setup();
prepare();
while (numQ--)
{
int type, u, v; cin >> type;
if (type <= 2) cin >> u >> v;
if (type == 1)
{
int p = get_root(u);
int q = get_root(v);
if (p == q) continue;
subcc(p); subcc(q);
add(val[0][p], base[a[v]]);
add(val[0][q], base[a[u]]);
sub(val[0][p], base[a[u]]);
sub(val[0][q], base[a[v]]);
swap(a[u], a[v]);
addcc(p); addcc(q);
}
else if (type == 2)
{
int p = get_root(u);
int q = get_root(v);
if (p == q) continue;
subcc(p); subcc(q);
root[q] = p; sz[p] += sz[q];
add(val[0][p], val[0][q]);
add(val[1][p], val[1][q]);
cc--;
addcc(p);
}
else if (type == 3)
{
if (cc == numCC) cout <<"DA\n";
else cout <<"NE\n";
}
else cout <<ansType4<<'\n';
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
11 ms |
8184 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
8184 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
8312 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
11 ms |
8312 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
8184 KB |
Output is correct |
2 |
Correct |
10 ms |
8312 KB |
Output is correct |
3 |
Correct |
11 ms |
8336 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
8824 KB |
Output is correct |
2 |
Correct |
14 ms |
8816 KB |
Output is correct |
3 |
Correct |
14 ms |
8824 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
59 ms |
12820 KB |
Output is correct |
2 |
Correct |
102 ms |
14464 KB |
Output is correct |
3 |
Correct |
184 ms |
17784 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1249 ms |
49732 KB |
Output is correct |
2 |
Correct |
5167 ms |
141132 KB |
Output is correct |
3 |
Execution timed out |
6026 ms |
186472 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2381 ms |
92704 KB |
Output is correct |
2 |
Correct |
4437 ms |
114736 KB |
Output is correct |
3 |
Correct |
1852 ms |
103476 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
971 ms |
57676 KB |
Output is correct |
2 |
Correct |
3064 ms |
97852 KB |
Output is correct |
3 |
Correct |
1815 ms |
103548 KB |
Output is correct |