結果
問題 | No.803 Very Limited Xor Subset |
ユーザー | leaf_1415 |
提出日時 | 2019-03-19 03:44:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,382 bytes |
コンパイル時間 | 600 ms |
コンパイル使用メモリ | 68,664 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 06:06:51 |
合計ジャッジ時間 | 2,065 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 7 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | WA | - |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | AC | 2 ms
5,376 KB |
testcase_44 | AC | 2 ms
5,376 KB |
testcase_45 | AC | 2 ms
5,376 KB |
testcase_46 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <utility> #include <algorithm> #define llint long long #define mod 1000000007 using namespace std; typedef pair<llint, llint> P; llint n, m, x; llint a[305]; vector<P> vec[305]; int mat[405][405]; int h; void swap(int i, int j) { for(int k = 1; k <= n; k++){ int t = mat[i][k]; mat[i][k] = mat[j][k]; mat[j][k] = t; } } void GaussianElimination() { int r = 0; for(int i = 0; i < n && r < h; i++){ int max_val = 0, max_j; for(int j = r+1; j < h; j++){ if(mat[j][i] > max_val){ max_val = mat[j][i]; max_j = j; } } if(max_val == 0) goto end; swap(i, max_j); for(int j = 0; j < h; j++){ if(j == r) continue; if(mat[j][i] == 0) continue; for(int k = 0; k <= n; k++){ mat[j][k] ^= mat[r][k]; } } r++; end:; } } int main(void) { cin >> n >> m >> x; for(int i = 0; i < n; i++) cin >> a[i]; llint t, l, r; for(int i = 0; i < m; i++){ cin >> t >> l >> r; l--, r--; vec[l].push_back(make_pair(r, t)); } for(int i = 0; i < n; i++){ sort(vec[i].begin(), vec[i].end()); for(int j = 0; j < vec[i].size(); j++){ if(vec[i][j].first == vec[i][0].first){ if(vec[i][j].second != vec[i][0].second){ cout << 0 << endl; return 0; } } else{ vec[vec[i][0].first+1].push_back(make_pair(vec[i][j].first, vec[i][0].second^vec[i][j].second)); } } } for(int i = 0; i < 30; i++){ for(int j = 0; j < n; j++){ if(a[j] & (1<<i)) mat[i][j] = 1; else mat[i][j] = 0; } if(x & (1<<i)) mat[i][n] = 1; else mat[i][n] = 0; } h = 30; for(int i = 0; i < n; i++){ if(vec[i].size() == 0) continue; for(int j = 0; j < n; j++){ if(j >= i && j <= vec[i][0].first) mat[h][j] = 1; else mat[h][j] = 0; } mat[h][n] = vec[i][0].second; h++; } /*for(int i = 0; i < h; i++){ for(int j = 0; j <= n; j++){ cout << mat[i][j] << " "; } cout << endl; }*/ GaussianElimination(); /*cout << endl; for(int i = 0; i < h; i++){ for(int j = 0; j <= n; j++){ cout << mat[i][j] << " "; } cout << endl; }*/ llint rank = 0; for(int i = 0; i < h; i++){ for(int j = 0; j < n; j++){ if(mat[i][j]){ rank++; goto pass; } } if(mat[i][n]){ cout << 0 << endl; return 0; } pass:; } llint ans = 1; for(int i = 0; i < n-rank; i++) ans *= 2, ans %= mod; cout << ans << endl; return 0; }