結果
問題 | No.42 貯金箱の溜息 |
ユーザー | beet |
提出日時 | 2018-11-12 15:45:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4,737 ms / 5,000 ms |
コード長 | 1,743 bytes |
コンパイル時間 | 1,856 ms |
コンパイル使用メモリ | 202,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 11:00:16 |
合計ジャッジ時間 | 13,694 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 999 ms
5,248 KB |
testcase_01 | AC | 4,737 ms
5,248 KB |
testcase_02 | AC | 4,648 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T,T MOD = 1000000007> struct Mint{ T v; Mint():v(0){} Mint(signed v):v(v){} Mint(long long t){v=t%MOD;if(v<0) v+=MOD;} Mint pow(int k){ Mint res(1),tmp(v); while(k){ if(k&1) res*=tmp; tmp*=tmp; k>>=1; } return res; } Mint inv(){return pow(MOD-2);} Mint& operator+=(Mint a){v+=a.v;if(v>=MOD)v-=MOD;return *this;} Mint& operator-=(Mint a){v+=MOD-a.v;if(v>=MOD)v-=MOD;return *this;} Mint& operator*=(Mint a){v=1LL*v*a.v%MOD;return *this;} Mint& operator/=(Mint a){return (*this)*=a.inv();} Mint operator+(Mint a) const{return Mint(v)+=a;}; Mint operator-(Mint a) const{return Mint(v)-=a;}; Mint operator*(Mint a) const{return Mint(v)*=a;}; Mint operator/(Mint a) const{return Mint(v)/=a;}; Mint operator-(){return v?MOD-v:v;} bool operator==(const Mint a)const{return v==a.v;} bool operator!=(const Mint a)const{return v!=a.v;} }; //INSERT ABOVE HERE using M = Mint<int, int(1e9+9)>; const int MAX = 666 * 2 + 2; M dp[MAX],nx[MAX]; signed main(){ vector<int> a({1,5,10,50,100,500}); int n=a.size(); int T; cin>>T; while(T--){ Int m; cin>>m; for(int j=0;j<MAX;j++) dp[j]=nx[j]=M(0); dp[0]=M(1); while(m){ for(int i=0;i<n;i++) for(int j=MAX;j>=0;j--) if(j+a[i]<MAX) dp[j+a[i]]+=dp[j]; for(int j=(m&1);j<MAX;j+=2) nx[j>>1]=dp[j]; for(int j=0;j<MAX;j++) dp[j]=nx[j],nx[j]=M(0); m>>=1; } cout<<dp[0].v<<endl; } return 0; }