結果
問題 | No.1710 Minimum OR is X |
ユーザー | riano |
提出日時 | 2021-10-15 22:52:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 4,507 bytes |
コンパイル時間 | 1,808 ms |
コンパイル使用メモリ | 173,976 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-17 17:56:38 |
合計ジャッジ時間 | 3,362 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 8 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 15 ms
5,376 KB |
testcase_09 | AC | 13 ms
5,376 KB |
testcase_10 | AC | 25 ms
5,376 KB |
testcase_11 | AC | 22 ms
5,376 KB |
testcase_12 | AC | 14 ms
5,376 KB |
testcase_13 | AC | 15 ms
5,376 KB |
testcase_14 | AC | 15 ms
5,376 KB |
testcase_15 | AC | 10 ms
5,376 KB |
testcase_16 | AC | 13 ms
5,376 KB |
testcase_17 | AC | 16 ms
5,376 KB |
testcase_18 | AC | 26 ms
5,376 KB |
testcase_19 | AC | 29 ms
5,376 KB |
testcase_20 | AC | 33 ms
5,376 KB |
testcase_21 | AC | 27 ms
5,376 KB |
testcase_22 | AC | 25 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 9 ms
5,376 KB |
testcase_26 | AC | 6 ms
5,376 KB |
testcase_27 | AC | 6 ms
5,376 KB |
testcase_28 | AC | 4 ms
5,376 KB |
testcase_29 | AC | 4 ms
5,376 KB |
testcase_30 | AC | 4 ms
5,376 KB |
testcase_31 | AC | 5 ms
5,376 KB |
testcase_32 | AC | 4 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i,n) for(int i=0;i<n;i++) #define Pr pair<ll,ll> #define Tp tuple<int,int,int> #define all(v) v.begin(),v.end() #define riano_ std::ios::sync_with_stdio(false);std::cin.tie(nullptr);typedef modint<mod> mint using Graph = vector<vector<ll>>; const ll mod = 998244353; template<uint64_t mod> struct modint{ uint64_t val; constexpr modint(const int64_t val_=0) noexcept:val((val_%int64_t(mod)+int64_t(mod))%int64_t(mod)){} constexpr modint operator-() const noexcept{ return modint(*this)=mod-val; } constexpr modint operator+(const modint rhs) const noexcept{ return modint(*this)+=rhs; } constexpr modint operator-(const modint rhs) const noexcept{ return modint(*this)-=rhs; } constexpr modint operator*(const modint rhs) const noexcept{ return modint(*this)*=rhs; } constexpr modint operator/(const modint rhs) const noexcept{ return modint(*this)/=rhs; } constexpr modint &operator+=(const modint rhs) noexcept{ val+=rhs.val; val-=((val>=mod)?mod:0); return (*this); } constexpr modint &operator-=(const modint rhs) noexcept{ val+=((val<rhs.val)?mod:0); val-=rhs.val; return (*this); } constexpr modint &operator*=(const modint rhs) noexcept{ val=val*rhs.val%mod; return (*this); } constexpr modint &operator/=(modint rhs) noexcept{ uint64_t ex=mod-2; modint now=1; while(ex){ now*=((ex&1)?rhs:1); rhs*=rhs,ex>>=1; } return (*this)*=now; } constexpr bool operator==(const modint rhs) noexcept{ return val==rhs.val; } constexpr bool operator!=(const modint rhs) noexcept{ return val!=rhs.val; } friend constexpr ostream &operator<<(ostream& os,const modint x) noexcept{ return os<<(x.val); } friend constexpr istream &operator>>(istream& is,modint& x) noexcept{ uint64_t t; is>>t,x=t; return is; } }; //累乗 aのb乗、正しmを法として求める long long pw(long long a,long long b,long long m){ if(b==0) return 1; else if(b%2==0){ long long x = pw(a,b/2,m); return (x*x)%m; } else{ long long x = pw(a,b-1,m); return (a*x)%m; } } //mod逆元 long long modinv(long long a, long long m) { long long b = m, u = 1, v = 0; while (b) { long long t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= m; if (u < 0) u += m; return u; } ll ranmod(ll l,ll r,ll d,ll N){ ll res = ((pw(10,r-l+1,mod)-1*d%mod)*pw(10,N-r,mod)%mod)*modinv(9,mod)%mod; //cout << (pw(10,r-l+2,mod)-1*d%mod)*pw(10,N-r,mod)%mod << endl; return res; } // 最大公約数を求める ll gcd(ll x,ll y){ ll r=1; if(x<0) x *= -1; if(y<0) y *= -1; if(x<=y) swap(x,y); if(y==0) r=0; while(r>0){ r=x%y; x=y; y=r; } return x; } //Cの計算 C[i][j]でiCjを得る void combination(vector<vector <long long> > &v){ for(int i = 0;i <v.size(); i++){ v[i][0]=1; v[i][i]=1; } for(int k = 1;k <v.size();k++){ for(int j = 1;j<k;j++){ v[k][j]=(v[k-1][j-1]+v[k-1][j])%mod; } } } int main() { riano_; mint ans = 0; //main関数内に以下をペースト Kは計算が必要な最大の大きさ vector<vector<long long>> C(300,vector<long long int>(300,0)); combination(C); ll N,M,K; cin >> N >> M >> K; string X; cin >> X; mint dp[M+1][N+1]; rep(i,M+1){ rep(j,N+1) dp[i][j] = 0; } dp[0][0] = 1; rep(i,M){ rep(j,N+1){ if(X[i]=='0'){ mint fr = pw(2LL,j,mod); for(int k=j;k<=N;k++){ dp[i+1][k] += fr*dp[i][j]*mint(C[N-j][k-j]); } } else{ mint fr = pw(2LL,j,mod); mint cnt = 0; rep(i2,K){ cnt += mint(C[N-j][i2]); } dp[i+1][j] = dp[i][j]*fr*cnt; } } mint cc = 0; // rep(j,N+1){ // cout << dp[i+1][j] << " "; // } // cout << endl; // cout << i << " " << cc << endl; } for(int i=0;i<=N-K;i++){ ans += dp[M][i]; } cout << ans << endl; }