結果
問題 | No.685 Logical Operations |
ユーザー | beet |
提出日時 | 2018-05-11 22:42:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 3,483 bytes |
コンパイル時間 | 2,074 ms |
コンパイル使用メモリ | 184,552 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 08:50:07 |
合計ジャッジ時間 | 3,105 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,948 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T> vector<T> make_v(size_t a){return vector<T>(a);} template<typename T,typename... Ts> auto make_v(size_t a,Ts... ts){ return vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...)); } template<typename T,typename V> typename enable_if<is_class<T>::value==0>::type fill_v(T &t,const V &v){t=v;} template<typename T,typename V> typename enable_if<is_class<T>::value!=0>::type fill_v(T &t,const V &v){ for(auto &e:t) fill_v(e,v); } #define MOD 1000000007 #define MAX_P 200005 Int fact[MAX_P],inv[MAX_P],finv[MAX_P];; Int extgcd(Int a,Int b,Int& x,Int& y){ Int d=a; if(b!=0){ d=extgcd(b,a%b,y,x); y-=(a/b)*x; }else{ x=1;y=0; } return d; } Int mod_inverse(Int a,Int mod){ Int x,y; extgcd(a,mod,x,y); return (mod+x%mod)%mod; } Int mod_pow(Int x,Int n,Int mod){ Int res=1; while(n){ if(n&1) (res*=x)%=mod; (x*=x)%=mod; n>>=1; } return res; } Int mod_inverse2(Int a,Int mod){ return mod_pow(a,mod-2,mod); } void init(Int mod){ fact[0]=1; for(Int i=1;i<MAX_P;i++) fact[i]=(fact[i-1]*i)%mod; inv[1]=1; for(Int i=2;i<MAX_P;i++) inv[i]=inv[mod%i]*(mod-mod/i)%mod; finv[0]=1; for(Int i=1;i<MAX_P;i++) finv[i]=finv[i-1]*inv[i]%mod; } Int mod_fact(Int n,Int mod,Int& e){ e=0; if(n==0) return 1; Int res=mod_fact(n/mod,mod,e); e+=n/mod; if(n/mod%2!=0)return res*(mod-fact[n%mod]) %mod; return res*fact[n%mod]%mod; } Int mod_comb(Int n,Int k,Int mod){ if(n==k||k==0) return 1; Int e1,e2,e3; Int a1=mod_fact(n,mod,e1),a2=mod_fact(k,mod,e2),a3=mod_fact(n-k,mod,e3); if(e1>e2+e3) return 0; return a1*mod_inverse(a2*a3%mod,mod)%mod; } Int mod_comb2(Int n,Int k,Int mod){ Int res=1; for(Int i=0;i<k;i++){ res*=(n-i)%mod; res%=mod; res*=mod_inverse(i+1,mod); res%=mod; } return res; } //only for prime mod Int mod_comb3(Int n,Int k,Int mod){ if(k<0||k>n) return 0; return fact[n]*finv[k]%mod*finv[n-k]%mod; } Int montmort(Int n,Int mod){ Int res=0,inv=1; for(Int k=2;k<=n;k++){ (inv*=mod_inverse(k,mod))%=mod; if(k%2) (res+=mod-inv)%=mod; else (res+=inv)%=mod; } for(Int i=1;i<=n;i++) (res*=i)%=mod; return res; } // calculate P(t) from given points in [0,N] Int LagrangePolynomial(vector<Int> &y,Int t,const Int mod){ init(mod); Int n=y.size()-1; Int num=1; for(Int i=0;i<=n;i++) num=num*((t-i)%mod)%mod; Int res=0; for(Int i=0;i<=n;i++){ Int tmp=(y[i]*num%mod)*mod_inverse((t-i)%mod,mod)%mod; tmp=tmp*finv[i]%mod; tmp=tmp*finv[n-i]%mod; if((n-i)&1) tmp=mod-tmp; res=(res+tmp)%mod; } return res; } //INSERT ABOVE HERE signed main(){ Int n; cin>>n; auto dp=make_v<Int>(2,2,2,2,62); fill_v(dp,0); dp[0][0][0][0][61]=1; for(Int i=61;i>0;i--){ for(Int a=0;a<2;a++){ for(Int b=0;b<2;b++){ for(Int c=0;c<2;c++){ for(Int d=0;d<2;d++){ for(Int x=0;x<2;x++){ for(Int y=0;y<2;y++){ Int na=a,nb=b,nc=c,nd=d; Int z=((n>>(i-1))&1); na|=(x^y); nb|=(x&y); nc|=(!x)&z; nd|=(!y)&z; if(x&&y&&!a) continue; if(!c&&x&&!z) continue; if(!d&&y&&!z) continue; dp[na][nb][nc][nd][i-1]+=dp[a][b][c][d][i]; dp[na][nb][nc][nd][i-1]%=MOD; } } } } } } } Int ans=0; for(Int c=0;c<2;c++) for(Int d=0;d<2;d++) ans+=dp[1][1][c][d][0]; ans%=MOD; ans=ans*mod_inverse(2,MOD)%MOD; cout<<ans<<endl; return 0; }