結果
問題 | No.42 貯金箱の溜息 |
ユーザー | kyuridenamida |
提出日時 | 2016-02-16 02:30:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,079 bytes |
コンパイル時間 | 1,400 ms |
コンパイル使用メモリ | 166,792 KB |
実行使用メモリ | 165,020 KB |
最終ジャッジ日時 | 2024-09-22 07:13:26 |
合計ジャッジ時間 | 9,170 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
6,812 KB |
testcase_01 | AC | 1,062 ms
13,056 KB |
testcase_02 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int (i) = 0 ; (i) < (int)(n) ; (i)++) #define REP(i,a,b) for(int (i) = a ; (int)(i) <= (int)(b) ; (i)++) #define all(n) (n).begin(),(n).end() typedef long long ll; typedef vector<int> Vi; typedef vector<Vi> VVi; typedef pair<long long,long long> Pii; typedef vector<Pii> VPii; int C[] = {1,5,10,50,100,500}; int mod = 1e9 + 9; unordered_map<long long,int> dp[62][6]; int dfs(int level,int stage,long long remain){ if( remain < 0 ) return 0; if( stage == 6 ) level++, stage = 0; if( level == 62 ) return (remain == 0); if( dp[level][stage].count(remain) ) return dp[level][stage][remain]; if( remain & ((1ll<<level)-1) ) return 0; int ans = dfs(level,stage+1,remain); if( (double)(1ll<<level) * C[stage] < 2e18 ){ ans += dfs(level,stage+1,remain - (1ll<<level) * C[stage]); } if( ans >= mod ) ans -= mod; return dp[level][stage][remain] = ans; } int main(){ int T; cin >> T; while(T--){ rep(i,62)rep(j,5) dp[i][j].clear(); long long M; cin >> M; cout << dfs(0,0,M) << endl; } }