結果
問題 | No.1421 国勢調査 (Hard) |
ユーザー | 👑 Nachia |
提出日時 | 2021-03-05 21:44:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 884 bytes |
コンパイル時間 | 2,214 ms |
コンパイル使用メモリ | 206,836 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-07 01:16:29 |
合計ジャッジ時間 | 4,165 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,820 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 31 ms
6,820 KB |
testcase_23 | AC | 31 ms
6,816 KB |
testcase_24 | AC | 32 ms
6,820 KB |
testcase_25 | AC | 32 ms
6,816 KB |
testcase_26 | AC | 31 ms
6,816 KB |
testcase_27 | AC | 32 ms
6,820 KB |
testcase_28 | AC | 32 ms
6,820 KB |
testcase_29 | AC | 32 ms
6,816 KB |
testcase_30 | AC | 32 ms
6,816 KB |
testcase_31 | AC | 32 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using ull=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) int N,M; vector<pair<ull,int>> G; vector<int> ans; int main(){ scanf("%d%d",&N,&M); G.resize(M); rep(i,M){ int a; scanf("%d",&a); G[i].first=0; rep(j,a){ int b; scanf("%d",&b); b--; G[i].first|=(1ull<<b); } scanf("%d",&G[i].second); } ans.resize(N); int p=0; rep(i,N){ if(p>=M) continue; for(int j=p+1; j<M; j++) if((G[j].first>>i)&1) swap(G[j],G[p]); if((G[p].first>>i)&1){ for(int j=0; j<M; j++) if(j!=p) if((G[j].first>>i)&1){ G[j].first^=G[p].first; G[j].second^=G[p].second; } p++; } } for(int j=p; j<M; j++) if(G[j].second!=0){ printf("-1\n"); return 0; } rep(i,p){ rep(d,N) if((G[i].first>>d)&1){ ans[d]=G[i].second; break; } } rep(i,N) printf("%d\n",ans[i]); return 0; }