# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
209152 |
2020-03-13T09:44:46 Z |
Sensei |
Zamjene (COCI16_zamjene) |
C++14 |
|
2550 ms |
151288 KB |
/*
DATE: 2020-03-13 10:51:02
NAME:
PROBLEM: COCI16_ZAMJENE
*/
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 2e6;
const int UPLIFT = 1e6;
const long long MOD = 1e16 + 3;
const int prime = 331;
long long add(long long x, long long y) {
return ((x % MOD) + (y % MOD)) % MOD;
}
long long sub(long long x, long long y) {
return ((x % MOD) + MOD - (y % MOD)) % MOD;
}
long long mul(long long x, long long y) {
return ((x % MOD) * (y % MOD)) % MOD;
}
long long liftt[MAXN + 7];
long long lift(int x) {
return liftt[x];
}
int p[MAXN + 7];
int q[MAXN + 7];
int par[MAXN + 7];
int r[MAXN + 7];
long long P[MAXN + 7];
long long Q[MAXN + 7];
unordered_map<long long, int> cnt;
long long ans_for_4 = 0;
void ins(int x, int y) {
// cerr << "ins: " << x << " " << y << " " << p[y] << "\n";
long long t = sub(P[x], Q[x]);
// cerr << t << "\t" << cnt[t] << "\t" << cnt[-t] << "\n";
if (t != 0) {
ans_for_4 -= r[x] * cnt[sub(0, t)];
}
cnt[t] -= r[x];
P[x] = add(P[x], lift(p[y]));
t = sub(P[x], Q[x]);
if (t != 0) {
ans_for_4 += r[x] * cnt[sub(0, t)];
}
cnt[t] += r[x];
// cerr << t << "\t" << cnt[t] << "\t" << cnt[-t] << "\n";
}
void del(int x, int y) {
long long t = sub(P[x], Q[x]);
if (t != 0) {
ans_for_4 -= r[x] * cnt[sub(0, t)];
}
cnt[t] -= r[x];
P[x] = sub(P[x], lift(p[y]));
t = sub(P[x], Q[x]);
if (t != 0) {
ans_for_4 += r[x] * cnt[sub(0, t)];
}
cnt[t] += r[x];
}
void makeset(int x) {
par[x] = x;
r[x] = 1;
Q[x] = lift(q[x]);
P[x] = 0;
cnt[sub(P[x], Q[x])] += r[x];
ins(x, x);
}
int findset(int x) {
if (par[x] != x) {
par[x] = findset(par[x]);
}
return par[x];
}
void link(int x, int y) {
x = findset(x);
y = findset(y);
if (x == y) {
return;
}
if (r[x] > r[y]) {
par[y] = x;
long long t = sub(P[x], Q[x]);
if (t != 0) {
ans_for_4 -= r[x] * cnt[sub(0, t)];
}
cnt[sub(P[x], Q[x])] -= r[x];
t = sub(P[y], Q[y]);
if (t != 0) {
ans_for_4 -= r[y] * cnt[sub(0, t)];
}
cnt[sub(P[y], Q[y])] -= r[y];
P[x] = add(P[x], P[y]);
Q[x] = add(Q[x], Q[y]);
r[x] += r[y];
t = sub(P[x], Q[x]);
if (t != 0) {
ans_for_4 += r[x] * cnt[sub(0, t)];
}
cnt[sub(P[x], Q[x])] += r[x];
}
else {
par[x] = y;
long long t = sub(P[x], Q[x]);
if (t != 0) {
ans_for_4 -= r[x] * cnt[sub(0, t)];
}
cnt[sub(P[x], Q[x])] -= r[x];
t = sub(P[y], Q[y]);
if (t != 0) {
ans_for_4 -= r[y] * cnt[sub(0, t)];
}
cnt[sub(P[y], Q[y])] -= r[y];
P[y] = add(P[y], P[x]);
Q[y] = add(Q[y], Q[x]);
r[y] += r[x];
t = sub(P[y], Q[y]);
if (t != 0) {
ans_for_4 += r[y] * cnt[sub(0, t)];
}
cnt[sub(P[y], Q[y])] += r[y];
}
}
int main() {
liftt[0] = 1;
for (int i = 1; i <= MAXN; i++) {
liftt[i] = mul(liftt[i - 1], prime);
}
int n, qry;
cin >> n >> qry;
for (int i = 1; i <= n; i++) {
scanf("%d", &p[i]);
p[i] += UPLIFT;
q[i] = p[i];
}
sort(q + 1, q + n + 1);
for (int i = 1; i <= n; i++) {
makeset(i);
}
while (qry--) {
// for (unordered_map<long long, int>::iterator it = cnt.begin(); it != cnt.end(); it++) {
// cerr << it->first << " " << it->second << "\n";
// }
int ty;
scanf("%d", &ty);
if (ty == 1) {
int a, b;
scanf("%d %d", &a, &b);
int x = findset(a);
int y = findset(b);
if (x == y) {
continue;
}
del(x, a);
ins(x, b);
del(y, b);
ins(y, a);
swap(p[a], p[b]);
}
else if (ty == 2) {
int a, b;
scanf("%d %d", &a, &b);
link(a, b);
}
else if (ty == 3) {
if (cnt[0] == n) {
printf("DA\n");
}
else {
printf("NE\n");
}
}
else if (ty == 4) {
printf("%lld\n", ans_for_4);
}
}
return 0;
}
Compilation message
zamjene.cpp: In function 'int main()':
zamjene.cpp:167:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &p[i]);
~~~~~^~~~~~~~~~~~~
zamjene.cpp:183:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &ty);
~~~~~^~~~~~~~~~~
zamjene.cpp:186:12: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d", &a, &b);
~~~~~^~~~~~~~~~~~~~~~~
zamjene.cpp:201:12: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d", &a, &b);
~~~~~^~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
30 ms |
15992 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
30 ms |
15996 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
30 ms |
15992 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
30 ms |
16036 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
32 ms |
15992 KB |
Output is correct |
2 |
Correct |
29 ms |
16024 KB |
Output is correct |
3 |
Correct |
31 ms |
16120 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
39 ms |
16444 KB |
Output is correct |
2 |
Correct |
38 ms |
16476 KB |
Output is correct |
3 |
Correct |
38 ms |
16480 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
120 ms |
19576 KB |
Output is correct |
2 |
Correct |
142 ms |
21040 KB |
Output is correct |
3 |
Correct |
155 ms |
23380 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1084 ms |
48320 KB |
Output is correct |
2 |
Correct |
2298 ms |
134684 KB |
Output is correct |
3 |
Correct |
2550 ms |
151288 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1515 ms |
81352 KB |
Output is correct |
2 |
Correct |
2037 ms |
100424 KB |
Output is correct |
3 |
Correct |
1486 ms |
83816 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1105 ms |
54624 KB |
Output is correct |
2 |
Correct |
1560 ms |
85096 KB |
Output is correct |
3 |
Correct |
1466 ms |
83944 KB |
Output is correct |