結果
問題 | No.184 たのしい排他的論理和(HARD) |
ユーザー | kotatsugame |
提出日時 | 2020-10-11 08:34:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 509 ms / 5,000 ms |
コード長 | 4,946 bytes |
コンパイル時間 | 676 ms |
コンパイル使用メモリ | 72,704 KB |
実行使用メモリ | 30,720 KB |
最終ジャッジ日時 | 2024-07-20 17:07:33 |
合計ジャッジ時間 | 12,224 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 358 ms
22,528 KB |
testcase_09 | AC | 74 ms
7,424 KB |
testcase_10 | AC | 266 ms
17,920 KB |
testcase_11 | AC | 187 ms
13,824 KB |
testcase_12 | AC | 416 ms
25,856 KB |
testcase_13 | AC | 448 ms
27,776 KB |
testcase_14 | AC | 257 ms
17,408 KB |
testcase_15 | AC | 490 ms
29,824 KB |
testcase_16 | AC | 406 ms
25,216 KB |
testcase_17 | AC | 448 ms
27,136 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 109 ms
30,720 KB |
testcase_21 | AC | 505 ms
30,592 KB |
testcase_22 | AC | 509 ms
30,592 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 302 ms
19,840 KB |
testcase_29 | AC | 428 ms
26,624 KB |
testcase_30 | AC | 370 ms
23,808 KB |
testcase_31 | AC | 310 ms
20,992 KB |
testcase_32 | AC | 398 ms
25,600 KB |
testcase_33 | AC | 498 ms
29,824 KB |
testcase_34 | AC | 492 ms
29,440 KB |
testcase_35 | AC | 500 ms
30,336 KB |
testcase_36 | AC | 505 ms
30,208 KB |
コンパイルメッセージ
b.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
ソースコード
#line 1 "b.cpp" #include<iostream> using namespace std; #line 3 "/home/kotatsugame/library/math/modint.cpp" #include<utility> template<int m> struct modint{ unsigned int x; constexpr modint()noexcept:x(){} template<typename T> constexpr modint(T x_)noexcept:x((x_%=m)<0?x_+m:x_){} constexpr unsigned int val()const noexcept{return x;} constexpr modint&operator++()noexcept{if(++x==m)x=0;return*this;} constexpr modint&operator--()noexcept{if(x==0)x=m;--x;return*this;} constexpr modint operator++(int)noexcept{modint res=*this;++*this;return res;} constexpr modint operator--(int)noexcept{modint res=*this;--*this;return res;} constexpr modint&operator+=(const modint&a)noexcept{x+=a.x;if(x>=m)x-=m;return*this;} constexpr modint&operator-=(const modint&a)noexcept{if(x<a.x)x+=m;x-=a.x;return*this;} constexpr modint&operator*=(const modint&a)noexcept{x=(unsigned long long)x*a.x%m;return*this;} constexpr modint&operator/=(const modint&a)noexcept{return*this*=a.inv();} constexpr modint operator+()const noexcept{return*this;} constexpr modint operator-()const noexcept{return modint()-*this;} constexpr modint pow(long long n)const noexcept { if(n<0)return pow(-n).inv(); modint x=*this,r=1; for(;n;x*=x,n>>=1)if(n&1)r*=x; return r; } constexpr modint inv()const noexcept { int s=x,t=m,x=1,u=0; while(t) { int k=s/t; s-=k*t; swap(s,t); x-=k*u; swap(x,u); } return modint(x); } friend constexpr modint operator+(const modint&a,const modint&b){return modint(a)+=b;} friend constexpr modint operator-(const modint&a,const modint&b){return modint(a)-=b;} friend constexpr modint operator*(const modint&a,const modint&b){return modint(a)*=b;} friend constexpr modint operator/(const modint&a,const modint&b){return modint(a)/=b;} friend constexpr bool operator==(const modint&a,const modint&b){return a.x==b.x;} friend constexpr bool operator!=(const modint&a,const modint&b){return a.x!=b.x;} friend ostream&operator<<(ostream&os,const modint&a){return os<<a.x;} friend istream&operator>>(istream&is,modint&a){long long v;is>>v;a=modint(v);return is;} }; #line 1 "/home/kotatsugame/library/math/matrix.cpp" #include<vector> #include<cassert> template<typename T> struct Matrix{ vector<vector<T> >dat; int N,M;//N x M matrix Matrix(){} Matrix(int N_):Matrix(N_,N_){} Matrix(int N_,int M_):N(N_),M(M_),dat(N_,vector<T>(M_)){} vector<T>&operator[](int i){return dat[i];} const vector<T>&operator[](int i)const{return dat[i];} static Matrix eye(int N) { Matrix res(N); for(int i=0;i<N;i++)res[i][i]=1; return res; } Matrix operator+(const Matrix&A)const { assert(N==A.N&&M==A.M); Matrix res(N,M); for(int i=0;i<N;i++)for(int j=0;j<M;j++) res[i][j]=dat[i][j]+A[i][j]; return res; } Matrix operator-(const Matrix&A)const { assert(N==A.N&&M==A.M); Matrix res(N,M); for(int i=0;i<N;i++)for(int j=0;j<M;j++) res[i][j]=dat[i][j]-A[i][j]; return res; } Matrix operator*(const Matrix&A)const { assert(M==A.N); Matrix res(N,A.M); for(int i=0;i<N;i++)for(int j=0;j<A.M;j++)for(int k=0;k<M;k++) res[i][j]+=dat[i][k]*A[k][j]; return res; } Matrix pow(long long n)const { assert(N==M); Matrix a=*this,res=eye(N); for(;n;a=a*a,n>>=1)if(n&1)res=res*a; return res; } template<typename U> Matrix operator+(const U&A)const { Matrix res(N,M); for(int i=0;i<N;i++)for(int j=0;j<M;j++) res[i][j]=dat[i][j]+A; return res; } template<typename U> Matrix operator-(const U&A)const { Matrix res(N,M); for(int i=0;i<N;i++)for(int j=0;j<M;j++) res[i][j]=dat[i][j]-A; return res; } template<typename U> Matrix operator*(const U&A)const { Matrix res(N,M); for(int i=0;i<N;i++)for(int j=0;j<M;j++) res[i][j]=dat[i][j]*A; return res; } T det()const { assert(N==M); Matrix A=*this; T ret=1; for(int j=0;j<N;j++) { int id=-1; for(int i=j;i<N;i++) { if(A[i][j]!=0) { id=i; break; } } if(id==-1)return T(0); if(id!=j) { swap(A[j],A[id]); ret=-ret; } ret*=A[j][j]; for(int k=j+1;k<N;k++)A[j][k]/=A[j][j]; for(int i=j+1;i<N;i++) { const T a=A[i][j]; for(int k=j+1;k<N;k++)A[i][k]-=A[j][k]*a; } } return ret; } int elimination() { int ret=0; for(int j=0;j<M;j++) { int id=-1; for(int i=ret;i<N;i++) { if(dat[i][j]!=0) { id=i; break; } } if(id==-1)continue; if(id!=ret)swap(dat[ret],dat[id]); { const T a=dat[ret][j]; for(int k=0;k<M;k++)dat[ret][k]/=a; } for(int i=0;i<N;i++) { if(i==ret)continue; const T a=dat[i][j]; for(int k=0;k<M;k++)dat[i][k]-=dat[ret][k]*a; } ret++; } return ret; } }; #line 5 "b.cpp" using mint=modint<2>; using Mat=Matrix<mint>; main() { int N; cin>>N; Mat A(N,61); for(int i=0;i<N;i++) { long a;cin>>a; for(int j=0;j<61;j++) { A[i][j]=a%2; a/=2; } } cout<<(1LL<<A.elimination())<<endl; }