# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
541970 | Olympia | Topovi (COCI15_topovi) | C++17 | 2091 ms | 45496 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <algorithm>
#include <iostream>
#include <set>
#include <cmath>
#include <map>
#include <random>
#include <cassert>
#include <ctime>
#include <cstdlib>
#include <limits.h>
#include <queue>
using namespace std;
const int MOD = 10007;
class DynamicThing {
map<int,int> oc1;
map<int,int> oc2;
public:
int tot = 0;
void remove (int type, int index, int quantity) {
if (type == 1) {
tot -= oc1[index] * oc2[index];
oc1[index] -= quantity;
tot += oc1[index] * oc2[index];
} else {
tot -= oc1[index] * oc2[index];
oc2[index] -= quantity;
tot += oc1[index] * oc2[index];
}
}
void add (int type, int index, int quantity) {
if (type == 1) {
tot -= oc1[index] * oc2[index];
oc1[index] += quantity;
tot += oc1[index] * oc2[index];
} else {
tot -= oc1[index] * oc2[index];
oc2[index] += quantity;
tot += oc1[index] * oc2[index];
}
}
};
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
map<int,int> row_xor;
map<int,int> col_xor;
int N, K, P;
cin >> N >> K >> P;
DynamicThing dt;
dt.add(1, 0, N);
dt.add(2, 0, N);
map<pair<int,int>,int> loc;
for (int i = 0; i < N; i++) {
int r, c, x;
cin >> r >> c >> x;
dt.remove(1, row_xor[r], 1 );
dt.remove(2, col_xor[c], 1);
row_xor[r] ^= x;
col_xor[c] ^= x;
dt.add(1, row_xor[r], 1 );
dt.add(2, col_xor[c], 1);
loc[{r, c}] = x;
}
while (P--) {
int r1, c1, r2, c2;
cin >> r1 >> c1 >> r2 >> c2;
if (r1 != r2) {
dt.remove(1, row_xor[r1], 1);
dt.remove(1, row_xor[r2], 1);
}
if (c1 != c2) {
dt.remove(2, col_xor[c1], 1);
dt.remove(2, col_xor[c2], 1);
}
row_xor[r1] ^= loc[{r1, c1}];
col_xor[c1] ^= loc[{r1, c1}];
row_xor[r2] ^= loc[{r1, c1}];
col_xor[c2] ^= loc[{r1, c1}];
loc[{r2, c2}] = loc[{r1, c1}];
loc[{r1, c1}] = 0;
if (r1 != r2) {
dt.add(1, row_xor[r1], 1);
dt.add(1, row_xor[r2], 1 );
}
if (c1 != c2) {
dt.add(2, col_xor[c1], 1);
dt.add(2, col_xor[c2], 1);
}
cout << N * N - dt.tot << '\n';
}
//cout << dt.tot << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |