結果
問題 | No.1421 国勢調査 (Hard) |
ユーザー | tokusakurai |
提出日時 | 2021-03-06 10:01:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 136 ms / 2,000 ms |
コード長 | 3,015 bytes |
コンパイル時間 | 2,544 ms |
コンパイル使用メモリ | 216,172 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 04:12:27 |
合計ジャッジ時間 | 5,204 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,824 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 3 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 3 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 3 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 136 ms
6,820 KB |
testcase_23 | AC | 135 ms
6,824 KB |
testcase_24 | AC | 136 ms
6,820 KB |
testcase_25 | AC | 135 ms
6,816 KB |
testcase_26 | AC | 136 ms
6,816 KB |
testcase_27 | AC | 25 ms
6,816 KB |
testcase_28 | AC | 36 ms
6,816 KB |
testcase_29 | AC | 29 ms
6,816 KB |
testcase_30 | AC | 25 ms
6,816 KB |
testcase_31 | AC | 29 ms
6,816 KB |
ソースコード
//二元体での行列 //計算量 簡約化:O(N*M^2/64) #include <bits/stdc++.h> using namespace std; struct io_setup{ io_setup(){ ios_base::sync_with_stdio(false); cin.tie(NULL); cout << fixed << setprecision(15); } } io_setup; template<typename T> struct F2_Matrix{ vector<T> A; F2_Matrix(int m) : A(m) {} int height() const {return A.size();} int width() const {return A.front().size();} inline const T &operator [] (int k) const {return A[k];} inline T &operator [] (int k) {return A[k];} int row_reduction(vector<int> &b){ int m = height(), n = width(), check = 0, rank = 0; assert(b.size() == m); for(int j = 0; j < n; j++){ int pivot = check; for(int i = check; i < m; i++){ if(A[i][j]) pivot = i; } swap(A[check], A[pivot]), swap(b[check], b[pivot]); if(!A[check][j]) continue; rank++; for(int i = 0; i < m; i++){ if(i == check || !A[i][j]) continue; A[i] ^= A[check], b[i] ^= b[check]; } if(++check == m) break; } return rank; } int row_reduction(){ vector<int> x(height(), 0); return row_reduction(x); } vector<vector<int>> Gausiann_elimination(vector<int> b){ int m = height(), n = width(); row_reduction(b); vector<vector<int>> ret; vector<int> p(m, n); vector<bool> is_zero(n, true); for(int i = 0; i < m; i++){ for(int j = 0; j < n; j++){ if(A[i][j] == 1) {p[i] = j; break;} } if(p[i] < n) is_zero[p[i]] = false; else if(b[i] == 1) return {}; } vector<int> x(n, 0); for(int i = 0; i < m; i++){ if(p[i] < n) x[p[i]] = b[i]; } ret.push_back(x); for(int j = 0; j < n; j++){ if(!is_zero[j]) continue; x[j] = 1; for(int i = 0; i < m; i++){ if(p[i] < n) x[p[i]] ^= A[i][j]; } ret.push_back(x), x[j] = 0; } return ret; } }; int main(){ int M, N; cin >> N >> M; vector<int> Y(M); vector<vector<int>> B(M); for(int i = 0; i < M; i++){ int K; cin >> K; B[i].resize(K); for(int j = 0; j < K; j++) {cin >> B[i][j]; B[i][j]--;} cin >> Y[i]; } using mat = F2_Matrix<bitset<50>>; vector<int> ret(N, 0); for(int i = 0; i < 30; i++){ mat A(M); vector<int> b(M, 0); for(int j = 0; j < M; j++){ for(auto &e: B[j]) A[j][e] = 1; b[j] = (Y[j]>>i)&1; } vector<vector<int>> ans = A.Gausiann_elimination(b); if(ans.empty()) {cout << "-1\n"; return 0;} for(int j = 0; j < N; j++){ if(ans[0][j] == 1) ret[j] |= (1<<i); } } for(int i = 0; i < N; i++) cout << ret[i] << '\n'; }