結果
問題 | No.1757 Many Many Cards |
ユーザー | riano |
提出日時 | 2021-11-20 15:59:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 5,525 bytes |
コンパイル時間 | 1,763 ms |
コンパイル使用メモリ | 178,396 KB |
実行使用メモリ | 813,952 KB |
最終ジャッジ日時 | 2024-06-11 17:22:29 |
合計ジャッジ時間 | 3,480 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
コンパイルメッセージ
main.cpp: In function 'std::vector<std::vector<long long int> > pw_matrix(std::vector<std::vector<long long int> >&, long long int)': main.cpp:148:1: warning: control reaches end of non-void function [-Wreturn-type] 148 | } | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i,n) for(int i=0;i<n;i++) #define rrep(i,n) for(int i=n-1;i>=0;i--) #define rrep2(i,n,k) for(int i=n-1;i>=n-k;i--) #define vll(n,i) vector<long long>(n,i) #define v2ll(n,m,i) vector<vector<long long>>(n,vll(m,i)) #define v3ll(n,m,k,i) vector<vector<vector<long long>>>(n,v2ll(m,k,i)) #define v4ll(n,m,k,l,i) vector<vector<vector<vector<long long>>>>(n,v3ll(m,k,l,i)) #define all(v) v.begin(),v.end() #define chmin(k,m) k = min(k,m) #define chmax(k,m) k = max(k,m) #define Pr pair<ll,ll> #define Tp tuple<int,int,int> #define riano_ std::ios::sync_with_stdio(false);std::cin.tie(nullptr) using Graph = vector<vector<int>>; 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; } modint & operator++(){ val++; if (val == mod) val = 0; return *this; } modint operator++(int){ modint<mod> res = *this; ++*this; return res; } 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; } }; typedef modint<mod> mint; #define vm(n,i) vector<mint>(n,i) #define v2m(n,m,i) vector<vector<mint>>(n,vm(m,i)) #define v3m(n,m,k,i) vector<vector<vector<mint>>>(n,v2m(m,k,i)) #define v4m(n,m,k,l,i) vector<vector<vector<vector<mint>>>>(n,v3m(m,k,l,i)) //累乗 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; } } //行列累乗 matrix power //modをglobalに定義しておく vector<vector<ll>> pw_matrix(vector<vector<ll>> &M,ll n){ if(n==0){ vector<vector<ll>> E = M; rep(i,M.size()){ rep(j,M.size()){ if(i==j) E[i][j] = 1; else E[i][j] = 0; } } return E; } if(n==1) return M; if(n%2==1){ auto K = pw_matrix(M,n-1); int a = M.size(); vector<vector<ll>> L(a,vector<ll>(a)); rep(i,a){ rep(j,a){ ll b = 0; rep(k,a) b += (M[i][k]*K[k][j])%mod; L[i][j] = b%mod; } } return L; } if(n%2==0){ auto K = pw_matrix(M,n/2); int a = M.size(); vector<vector<ll>> L(a,vector<ll>(a)); rep(i,a){ rep(j,a){ ll b = 0; rep(k,a) b += (K[i][k]*K[k][j])%mod; L[i][j] = b%mod; } } return L; } } mint sum_r(mint a,mint r, mint n){ if(n==0) return mint(0); mint res = a*mint(pw(r.val,n.val,mod)-1)/(r-mint(1)); return res; } //Combination2 //10^6くらいまで //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; } vector<ll> fact; vector<ll> invf; ll comb(ll n,ll k){ if(n<0||k<0||k>n) return 0LL; else{ ll a = fact[n]*invf[k]%mod; a = a*invf[n-k]%mod; return a; } } int main() { riano_; mint ans = 0; ll N,M; cin >> N >> M; //main関数内に以下ペースト //N:max fact.assign(M+N+1,1LL); invf.assign(M+N+1,1LL); rep(i,M+N) fact[i+1] = fact[i]*(i+1)%mod; rep(i,M+N+1) invf[i] = modinv(fact[i],mod); ans = mint(M)*(mint(pw(M,2*N,mod))-mint(pw(M-1,2*N,mod))); mint f[M+1]; for(ll i=2;i<=M;i++){ f[i] = mint(pw(M-i,2*(N-i+1),mod))*mint(comb(N,i-1))*mint(pw(i,i-2,mod))*mint(pw(2,i-1,mod))*mint(fact[i-1]); } for(ll i=2;i<=M;i++){ ans -= f[i]*mint(comb(M,i)); } cout << ans << endl; }