結果
問題 | No.2907 Business Revealing Dora Tiles |
ユーザー | 👑 獅子座じゃない人 |
提出日時 | 2024-06-05 21:34:30 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 872 ms / 3,000 ms |
コード長 | 6,360 bytes |
コンパイル時間 | 12,109 ms |
コンパイル使用メモリ | 260,244 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-23 11:36:21 |
合計ジャッジ時間 | 32,224 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 22 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 54 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | AC | 3 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 13 ms
6,940 KB |
testcase_19 | AC | 3 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 62 ms
6,944 KB |
testcase_22 | AC | 5 ms
6,940 KB |
testcase_23 | AC | 62 ms
6,940 KB |
testcase_24 | AC | 291 ms
6,940 KB |
testcase_25 | AC | 290 ms
6,940 KB |
testcase_26 | AC | 292 ms
6,940 KB |
testcase_27 | AC | 291 ms
6,944 KB |
testcase_28 | AC | 298 ms
6,940 KB |
testcase_29 | AC | 297 ms
6,944 KB |
testcase_30 | AC | 291 ms
6,940 KB |
testcase_31 | AC | 292 ms
6,940 KB |
testcase_32 | AC | 296 ms
6,940 KB |
testcase_33 | AC | 293 ms
6,944 KB |
testcase_34 | AC | 299 ms
6,940 KB |
testcase_35 | AC | 291 ms
6,940 KB |
testcase_36 | AC | 298 ms
6,940 KB |
testcase_37 | AC | 294 ms
6,940 KB |
testcase_38 | AC | 291 ms
6,944 KB |
testcase_39 | AC | 291 ms
6,940 KB |
testcase_40 | AC | 295 ms
6,940 KB |
testcase_41 | AC | 315 ms
6,940 KB |
testcase_42 | AC | 291 ms
6,944 KB |
testcase_43 | AC | 313 ms
6,940 KB |
testcase_44 | AC | 813 ms
6,940 KB |
testcase_45 | AC | 872 ms
6,940 KB |
testcase_46 | AC | 746 ms
6,940 KB |
testcase_47 | AC | 264 ms
6,944 KB |
testcase_48 | AC | 533 ms
6,944 KB |
testcase_49 | AC | 230 ms
6,944 KB |
testcase_50 | AC | 453 ms
6,944 KB |
testcase_51 | AC | 36 ms
6,940 KB |
testcase_52 | AC | 291 ms
6,944 KB |
testcase_53 | AC | 386 ms
6,944 KB |
testcase_54 | AC | 61 ms
6,940 KB |
testcase_55 | AC | 385 ms
6,940 KB |
testcase_56 | AC | 393 ms
6,940 KB |
testcase_57 | AC | 390 ms
6,944 KB |
testcase_58 | AC | 307 ms
6,940 KB |
testcase_59 | AC | 405 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/modint> using namespace atcoder; using mint=modint998244353; vector nim_prod_table(256, vector<unsigned long long>(256)); vector<unsigned long long> nim_inv_table(256); void nim_prod_precalc() { nim_prod_table[0][0]=0; nim_prod_table[0][1]=0; nim_prod_table[1][0]=0; nim_prod_table[1][1]=1; for(int d=0;d<3;++d){ int p=1<<d; for(int a=0;a<(1<<(2*p));++a){ for(int b=(1<<p);b<(1<<(2*p));++b){ unsigned long long a_h=a>>p; unsigned long long a_l=a-(a_h<<p); unsigned long long b_h=b>>p; unsigned long long b_l=b-(b_h<<p); unsigned long long al_bl=nim_prod_table[a_l][b_l]; unsigned long long ahl_bhl=nim_prod_table[a_h^a_l][b_h^b_l]; unsigned long long ah_bh=nim_prod_table[a_h][b_h]; unsigned long long ah_bh_h=nim_prod_table[ah_bh][1ULL<<(p-1)]; nim_prod_table[a][b]=nim_prod_table[b][a]=((al_bl^ahl_bhl)<<p)^(al_bl^ah_bh_h); } } } } unsigned long long nim_product(unsigned long long a, unsigned long long b, int p=64) { if(a==0 || b==0){ return 0; } if(a==1 || b==1){ return a*b; } if(p==64){ if(a<(1ULL<<8) && b<(1ULL<<8)){ p=8; } else if(a<(1ULL<<16) && b<(1ULL<<16)){ p=16; } else if(a<(1ULL<<32) && b<(1ULL<<32)){ p=32; } } if(p==8){ return nim_prod_table[a][b]; } p/=2; unsigned long long a_h=a>>p; unsigned long long a_l=a-(a_h<<p); unsigned long long b_h=b>>p; unsigned long long b_l=b-(b_h<<p); unsigned long long al_bl=nim_product(a_l, b_l, p); unsigned long long ahl_bhl=nim_product(a_h^a_l, b_h^b_l, p); unsigned long long ah_bh=nim_product(a_h, b_h, p); unsigned long long ah_bh_h=nim_product(ah_bh, 1ULL<<(p-1), p); return ((al_bl^ahl_bhl)<<p)^(al_bl^ah_bh_h); } void nim_inv_precalc() { for(int i=0;i<256;++i){ for(int j=i;j<256;++j){ if(nim_prod_table[i][j]==1){ nim_inv_table[i]=j; nim_inv_table[j]=i; break; } } } } unsigned long long nim_inv(unsigned long long a, int p=64) { if(p==64){ if(a<(1ULL<<8)){ p=8; } else if(a<(1ULL<<16)){ p=16; } else if(a<(1ULL<<32)){ p=32; } } if(p==8){ return nim_inv_table[a]; } p/=2; unsigned long long a_h=a>>p; unsigned long long a_l=a-(a_h<<p); unsigned long long half_inv=nim_inv(nim_product(a_h^a_l, a_l)^nim_product(nim_product(a_h, a_h), 1ULL<<(p-1)), p); return (nim_product(half_inv, a_h)<<p)^nim_product(half_inv, a_h^a_l); } int gauss(int r, int c, vector<vector<unsigned long long>> & m, vector<bool> & is_member) { int rank=0; for(int i=0;i<c;++i){ if(!is_member[i]){ continue; } int pivot=-1; for(int j=rank;j<r;++j){ if(m[j][i]>0){ pivot=j; break; } } if(pivot==-1){ continue; } swap(m[pivot], m[rank]); auto inv=nim_inv(m[rank][i]); m[rank][i]=1; for(int k=0;k<c;++k){ if(k==i){ continue; } m[rank][k]=nim_product(m[rank][k], inv); } for(int j=rank+1;j<r;++j){ auto factor=m[j][i]; m[j][i]=0; for(int k=0;k<c;++k){ if(k==i){ continue; } m[j][k]^=nim_product(m[rank][k], factor); } } ++rank; if(rank==r){ break; } } return rank; } int main(void) { nim_prod_precalc(); nim_inv_precalc(); int n,t; cin >> n >> t; vector h(t, vector<unsigned long long>(n)); for(int i=0;i<t;++i){ for(int j=0;j<n;++j){ cin >> h[i][j]; --h[i][j]; } } mint ans=0; vector is_member(n, true); int rank=gauss(t, n, h, is_member); vector<int> ranks(1<<n); for(int i=0;i<n-rank;++i){ is_member[i]=false; } for(int i=n-rank;i<n;++i){ is_member[i]=true; } do { int s=0; for(int i=0;i<n;++i){ if(is_member[i]){ s+=1<<i; } } if(gauss(rank, n, h, is_member)==rank){ ranks[s]=rank; } } while(next_permutation(is_member.begin(), is_member.end())); for(int r=rank-1;r>=0;--r){ for(int i=0;i<n-r;++i){ is_member[i]=false; } for(int i=n-r;i<n;++i){ is_member[i]=true; } do { int s=0; for(int i=0;i<n;++i){ if(is_member[i]){ s+=1<<i; } } for(int i=0;i<n;++i){ if(is_member[i]){ continue; } if(ranks[s+(1<<i)]>0){ ranks[s]=r; break; } } } while(next_permutation(is_member.begin(), is_member.end())); } for(int r=0;r<n;++r){ for(int i=n-r;i<n;++i){ is_member[i]=true; } do { int s=0; for(int i=0;i<n;++i){ if(is_member[i]){ s+=1<<i; } } for(int i=0;i<n;++i){ if(is_member[i]){ continue; } ranks[s+(1<<i)]=max(ranks[s], ranks[s+(1<<i)]); } } while(next_permutation(is_member.begin(), is_member.end())); } mint p=932051910; for(unsigned int s=0;s<(1U<<n);++s){ int count=popcount(s); if(n%2>0){ if(count%2>0){ ans+=p.pow(count-ranks[s]); } else { ans-=p.pow(count-ranks[s]); } } else { if(count%2>0){ ans-=p.pow(count-ranks[s]); } else { ans+=p.pow(count-ranks[s]); } } } cout << ans.val() << endl; return 0; }