結果

問題 No.189 SUPER HAPPY DAY
ユーザー zerokugizerokugi
提出日時 2015-04-22 00:58:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 13 ms / 5,000 ms
コード長 2,958 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 104,028 KB
実行使用メモリ 9,776 KB
最終ジャッジ日時 2023-09-18 07:11:12
合計ジャッジ時間 2,063 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,688 KB
testcase_01 AC 5 ms
9,580 KB
testcase_02 AC 5 ms
9,572 KB
testcase_03 AC 5 ms
9,616 KB
testcase_04 AC 5 ms
9,640 KB
testcase_05 AC 5 ms
9,604 KB
testcase_06 AC 5 ms
9,588 KB
testcase_07 AC 5 ms
9,668 KB
testcase_08 AC 5 ms
9,644 KB
testcase_09 AC 4 ms
9,576 KB
testcase_10 AC 5 ms
9,612 KB
testcase_11 AC 5 ms
9,656 KB
testcase_12 AC 5 ms
9,576 KB
testcase_13 AC 7 ms
9,608 KB
testcase_14 AC 8 ms
9,660 KB
testcase_15 AC 8 ms
9,652 KB
testcase_16 AC 9 ms
9,692 KB
testcase_17 AC 9 ms
9,624 KB
testcase_18 AC 8 ms
9,620 KB
testcase_19 AC 9 ms
9,596 KB
testcase_20 AC 6 ms
9,700 KB
testcase_21 AC 6 ms
9,652 KB
testcase_22 AC 5 ms
9,768 KB
testcase_23 AC 9 ms
9,776 KB
testcase_24 AC 9 ms
9,624 KB
testcase_25 AC 13 ms
9,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <climits>
#include <ctime>
#include <queue>
#include <stack>
#include <algorithm>
#include <list>
#include <vector>
#include <set>
#include <map>
#include <iostream>
#include <deque>
#include <complex>
#include <string>
#include <iomanip>
#include <sstream>
#include <bitset>
#include <valarray>
#include <unordered_map>
#include <iterator>
#include <functional>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef unsigned int uint;
typedef unsigned char uchar;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;

#define REP(i,x) for(int i=0;i<(int)(x);i++)
#define REPS(i,x) for(int i=1;i<=(int)(x);i++)
#define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--)
#define RREPS(i,x) for(int i=((int)(x));i>0;i--)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();i++)
#define RFOR(i,c) for(__typeof((c).rbegin())i=(c).rbegin();i!=(c).rend();i++)
#define ALL(container) (container).begin(), (container).end()
#define RALL(container) (container).rbegin(), (container).rend()
#define SZ(container) ((int)container.size())
#define mp(a,b) make_pair(a, b)
#define pb push_back
#define eb emplace_back
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T> ostream& operator<<(ostream &os, const vector<T> &t) {
os<<"["; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"]"; return os;
}
template<class T> ostream& operator<<(ostream &os, const set<T> &t) {
os<<"{"; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"}"; return os;
}
template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";}
template<class S, class T> pair<S,T> operator+(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first+t.first, s.second+t.second);}
template<class S, class T> pair<S,T> operator-(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first-t.first, s.second-t.second);}

const int INF = 1<<28;
const double EPS = 1e-8;
const int MOD = 1000000009;


int n;
ll dp[202][2000][2];
vector<ll> solve(string s){
	int n = s.size();
	memset(dp, 0, sizeof(dp));
	dp[0][0][0] = 1;
	REP(i, n)REP(j, i*9+1)REP(k, 2)if(dp[i][j][k]){
		dp[i][j][k] %= MOD;
		REP(l, (!k?s[i]-'0'+1:10)){
			dp[i+1][j+l][k | (l < s[i]-'0')] += dp[i][j][k];
		}
	}
	vector<ll> res(n*9+1);
	REP(i, n*9+1) res[i] = (dp[n][i][0] + dp[n][i][1]) % MOD;
	return res;
}

int main(int argc, char *argv[]){
	ios::sync_with_stdio(false);
	string s, t;
	cin >> s >> t;
	vector<ll> a = solve(s);
	vector<ll> b = solve(t);
	ll ans = 0;
	REP(i, min(a.size(), b.size())) ans += a[i]*b[i]%MOD;
	cout << (ans + MOD - 1) % MOD << endl;
	return 0;
}
0