-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGF2Matrix.cpp
321 lines (274 loc) · 6.42 KB
/
GF2Matrix.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
//#define SUBMIT
#ifdef SUBMIT
#define LOGLEVEL 0
#define NDEBUG
#else
#define LOGLEVEL 1
#endif
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cassert>
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <cmath>
#include <cstdlib>
#include <array>
#include <type_traits>
#include <queue>
#include <stack>
#include <functional>
#include <sstream>
#include <unordered_set>
#include <unordered_map>
#include <deque>
#include <climits>
#include <cfloat>
#include <random>
#include <bitset>
using namespace std;
#define LOG(l, x) if (l <= LOGLEVEL) cout << "[LOG " << LOGLEVEL << "] " << x << endl
#define int64 long long
#define repeat(x) for (auto repeat_var = 0; repeat_var < x; ++repeat_var)
#define for_inc(i, x) for (auto i = 0; i < x; ++i)
#define for_dec(i, x) for (auto i = x - 1; i >= 0; --i)
#define for_inc_range(i, x, y) for (auto i = x; i <= y; ++i)
#define for_dec_range(i, x, y) for (auto i = x; i >= y; --i)
#define fill0(x) memset(x, 0, sizeof(x))
#define INT_INF ((int)2E9L)
#define INT64_INF ((int64)1E18L)
#define MOD 1000000007
int MODP(int64 x) {
int r = x % MOD;
if (r < 0) r += MOD;
return r;
}
class AbstractGF2MatrixRecorder
{
public:
// record row[r1] = row[r1] ^ row[r2]
virtual void record(int r1, int r2) {}
// record swap(row[r1], row[r2])
virtual void recordSwap(int r1, int r2) {}
};
class GF2MatrixRecorder : public AbstractGF2MatrixRecorder
{
vector<pair<int, int>> op;
public:
void record(int r1, int r2) {
op.emplace_back(r1, r2);
}
void recordSwap(int r1, int r2) {
if (r1 == r2) return;
op.emplace_back(r1, r2);
op.emplace_back(r2, r1);
op.emplace_back(r1, r2);
}
const vector<pair<int, int>>& getOperations() {
return op;
}
};
// 0-based
// Note that columns are numbered from (NCOL - 1) to 0, left ro right
template<int NCOL> class GF2Matrix {
vector<bitset<NCOL>> row;
int nRow;
vector<int> order;
vector<size_t> length;
bool isLock;
int rank;
bool gaussianEliminationCalled;
vector<int> first1;
AbstractGF2MatrixRecorder noRecorder;
AbstractGF2MatrixRecorder &recorder;
public:
GF2Matrix(int nRow): recorder(noRecorder) {
init(nRow);
}
GF2Matrix(int nRow, AbstractGF2MatrixRecorder &recorder): recorder(recorder) {
init(nRow);
}
int numRow() const {
return nRow;
}
int numCol() const {
return NCOL;
}
void init(int nRow) {
this->nRow = nRow;
row.resize(nRow);
order.resize(nRow);
for_inc(r, nRow) {
order[r] = r;
}
length.resize(nRow);
isLock = false;
gaussianEliminationCalled = false;
}
void setRow(int r, const bitset<NCOL> &rV) {
row[r] = rV;
}
void lock() {
isLock = true;
for_inc(r, nRow) {
for_dec(c, NCOL) {
if (row[r].test(c)) {
length[r] = c;
break;
}
}
}
}
// O(NROW * NCOL)
void gaussianElimination() {
assert(isLock);
first1.resize(nRow);
rank = 0;
for (int c = NCOL - 1, r = 0; c >=0; c--) {
int i = r;
while (i < nRow && !getRow(i).test(c)) {
++i;
}
if (i >= nRow) {
continue;
}
first1[r] = c;
swap(order[r], order[i]);
recorder.recordSwap(r, i);
for_inc(j, nRow){
if (j != r && getRow(j).test(c)) {
recorder.record(j, r);
row[order[j]] ^= getRow(r);
}
}
r++;
rank++;
}
gaussianEliminationCalled = true;
}
// Return the first 1 on the row (after gaussian elimination).
int getFirst1(int row) const {
assert(gaussianEliminationCalled);
assert(row < rank);
return first1[row];
}
// Transform to another matrix in row echelon form
void transform(const GF2Matrix<NCOL> &t) {
assert(t.isGaussianEliminationCalled());
for_inc(r, rank) {
int c = getFirst1(r);
for_inc(r2, rank) {
if (getRow(r2).test(c) != t.getRow(r2).test(c)) {
row[order[r2]] ^= getRow(r);
recorder.record(r2, r);
}
}
}
}
bool isGaussianEliminationCalled() const {
return gaussianEliminationCalled;
}
int getRank() const {
assert(gaussianEliminationCalled);
return rank;
}
inline const bitset<NCOL> & getRow(int r) const {
return row[order[r]];
}
bool operator ==(const GF2Matrix<NCOL> &y) const {
if (y.numRow() != numRow()) return false;
for_inc(r, nRow) {
if (getRow(r) != y.getRow(r)) return false;
}
return true;
}
friend std::ostream& operator<< (std::ostream& stream, const GF2Matrix<NCOL>& matrix) {
stream << "[matrix: row = " << matrix.nRow << ", col = " << NCOL << endl;
for_inc(r, matrix.nRow) {
for_dec(c, NCOL) {
stream << matrix.getRow(r).test(c) << " ";
}
stream << endl;
}
stream << "]" << endl;
return stream;
}
};
void testGen() {
freopen("biginput1.txt", "w", stdout);
fclose(stdout);
}
void output(const GF2Matrix<32> &a) {
ostringstream ss;
for_inc(r, a.numRow()) {
ss << a.getRow(r).to_ullong() << " ";
}
LOG(1, ss.str());
}
// CF 270 - F
int main() {
ios::sync_with_stdio(false);
#ifndef SUBMIT
freopen("input3.txt", "r", stdin);
#endif
int n;
cin >> n;
vector<int> initial;
GF2MatrixRecorder recordA, recordT;
GF2Matrix<32> a(n, recordA);
for_inc(r, n) {
int x;
cin >> x;
initial.push_back(x);
a.setRow(r, x);
}
a.lock();
a.gaussianElimination();
vector<int> target;
repeat(n) {
int x;
cin >> x;
target.push_back(x);
}
GF2Matrix<32> b(2 * n);
for_inc(r, n) {
b.setRow(r, a.getRow(r));
}
int r = n;
for (int x: target) {
b.setRow(r, x);
r++;
}
b.lock();
b.gaussianElimination();
if (b.getRank() != a.getRank()) {
cout << -1 << endl;
} else {
GF2Matrix<32> t(n, recordT);
for_inc(r, n) {
t.setRow(r, target[r]);
}
t.lock();
t.gaussianElimination();
a.transform(t);
vector<pair<int, int>> ret;
for (auto p: recordA.getOperations()) {
ret.push_back(p);
}
for (auto it = recordT.getOperations().rbegin(); it != recordT.getOperations().rend(); ++it) {
ret.push_back(*it);
}
cout << ret.size() << endl;
for (auto p: ret) {
cout << p.first + 1 << " " << p.second + 1 << " " << endl;
initial[p.first] ^= initial[p.second];
}
// Just verify
for_inc(i, n) {
LOG(1, initial[i]);
}
}
return 0;
}