結果
問題 | No.1421 国勢調査 (Hard) |
ユーザー | miyo2580 |
提出日時 | 2024-02-14 17:47:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,553 bytes |
コンパイル時間 | 1,922 ms |
コンパイル使用メモリ | 204,764 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-28 18:57:18 |
合計ジャッジ時間 | 5,465 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 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 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 1 ms
6,820 KB |
testcase_17 | AC | 1 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 1 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 1 ms
6,820 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 18 ms
6,816 KB |
testcase_28 | AC | 19 ms
6,820 KB |
testcase_29 | AC | 19 ms
6,816 KB |
testcase_30 | AC | 19 ms
6,820 KB |
testcase_31 | AC | 19 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define repd(i,a,b) for (ll i=(a);i<(b);i++) #define rep(i,n) repd(i,0,n) #define all(x) (x).begin(),(x).end() template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } typedef long long ll; typedef pair<ll,ll> P; typedef vector<ll> vec; using Graph = vector<vector<ll>>; const long long INF = 1LL<<60; const long long MOD = 1000000007; int main() { ios::sync_with_stdio(false); cin.tie(0); ll n,m; cin>>n>>m; vec a(m); vec b(m); rep(i,m){ ll x;cin>>x; rep(j,x){ ll y;cin>>y; y--; a[i]^=(1<<y); } cin>>b[i]; } ll cnt=0; vec memo(n,-1); rep(i,n){ ll idx=-1; repd(j,cnt,m){ if((a[j]>>i)&1){ idx=j; break; } } if(idx==-1){ memo[i]=0; continue; } swap(a[idx],a[cnt]); swap(b[idx],b[cnt]); repd(j,cnt+1,m){ if((a[j]>>i)&1){ a[j]^=a[cnt]; b[j]^=b[cnt]; } } cnt++; } repd(i,cnt,m){ if(b[i]!=0){ cout<<-1<<endl; return 0; } } for(ll i=n-1;i>=0;i--){ if(memo[i]==0)continue; cnt--; for(ll j=i+1;j<n;j++){ if((a[cnt]>>j)&1){ b[cnt]^=memo[j]; } } memo[i]=b[cnt]; } rep(i,n)cout<<memo[i]<<" "; cout<<endl; return 0; }