結果
問題 | No.1421 国勢調査 (Hard) |
ユーザー | merom686 |
提出日時 | 2021-03-05 23:19:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,598 bytes |
コンパイル時間 | 875 ms |
コンパイル使用メモリ | 91,228 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-07 04:58:00 |
合計ジャッジ時間 | 5,582 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; struct P { P &operator^=(const P &p) { b ^= p.b; y ^= p.y; return *this; } ll b; int y; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; vector<P> p(m); for (int i = 0; i < m; i++) { int a; cin >> a; ll b = 0; for (int j = 0; j < a; j++) { int t; cin >> t; t--; b ^= 1LL << t; } int y; cin >> y; p[i] = { b, y }; } for (int k = 0; k < n; k++) { ll t = 1LL << (n - 1 - k); int f = 0; for (int i = k; i < m; i++) { if (p[i].b & t) { for (int i1 = i + 1; i1 < m; i1++) { p[i1] ^= p[i]; } swap(p[i], p[k]); f = 1; break; } } if (f == 0) { p.push_back({ t, 0 }); swap(p.back(), p[k]); } } for (int i = 0; i < m; i++) { if (p[i].b == 0 && p[i].y != 0) { cout << -1 << endl; exit(0); } } for (int i = n; --i >= 0;) { for (int j = 0; j < i; j++) { if (p[i].b & p[j].b) { p[j] ^= p[i]; } } } for (int i = 0; i < n; i++) { cout << p[n - 1 - i].y << '\n'; } return 0; }