View Code of Problem 1082

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;

LL dp[505][2][2][2];
int cnt[] = {6, 2, 5, 5, 4, 5, 6, 3, 7, 6};
int mod;

void add(LL& a, LL b)
{
	a += b;
	if(a > mod) a -= mod;
}

LL dfs(int n, int carry, int is_b, int is_c)
{
	if(n == 0) {
		if(is_b && is_c && !carry) return true;
		else return false;
	}
	if(dp[n][carry][is_b][is_c] != -1) return dp[n][carry][is_b][is_c];
	dp[n][carry][is_b][is_c] = 0;
	LL &ans = dp[n][carry][is_b][is_c];
	
	if(is_b) {
		if(is_c) {
			if(carry && n == 2) add(ans, 1);
			else ans = 0;
		}
		else {
			for(int c = 0; c < 10; c++) {
				int a = c + carry;
				int n_carry = 0;
				if(a >= 10) a -= 10, n_carry = 1;
				int t = n - cnt[c] - cnt[a];
				if(t >= 0) {
					add(ans, dfs(t, n_carry, 1, 0));
					if(c) add(ans, dfs(t, n_carry, 1, 1));
				}				
			}
		}
	}
	else {
		if(is_c) {
			for(int b = 0; b < 10; b++) {
				int a = b + carry;
				int n_carry = 0;
				if(a >= 10) a -= 10, n_carry = 1;
				int t = n - cnt[b] - cnt[a];
				if(t >= 0) {
					add(ans, dfs(t, n_carry, 0, 1));
					if(b) add(ans, dfs(t, n_carry, 1, 1));
				}
			}
		}
		else {
			for(int b = 0; b < 10; b++) {
				for(int c = 0; c < 10; c++) {
					int a = b + c + carry;
					int n_carry = 0;
					if(a >= 10) a -= 10, n_carry = 1;
					int t = n - cnt[a] - cnt[b] - cnt[c];
					if(t >= 0) {
						add(ans, dfs(t, n_carry, 0, 0));
						if(b) add(ans, dfs(t, n_carry, 1, 0));
						if(c) add(ans, dfs(t, n_carry, 0, 1));
						if(b && c) add(ans, dfs(t, n_carry, 1, 1));
					}
				}
			}
		}
	}
	return ans;
}

void work()
{
	int n;
	memset(dp, -1, sizeof dp);
	scanf("%d%d", &n, &mod);
	printf("%lld\n", dfs(n-3, 0, 0, 0));
}

int main()
{
	//freopen("data", "r", stdin);
	int _;
	scanf("%d", &_);
	for(int i = 1; i <= _; i++) {
		printf("Case #%d: ", i);
		work();
	}
	
	return 0;
}
/*
F:\temp\16139782.54799\Main.cc:2:25: error: bits/stdc++.h: No such file or directory
F:\temp\16139782.54799\Main.cc: In function 'void work()':
F:\temp\16139782.54799\Main.cc:80: error: 'memset' was not declared in this scope
F:\temp\16139782.54799\Main.cc:81: error: 'scanf' was not declared in this scope
F:\temp\16139782.54799\Main.cc:82: error: 'printf' was not declared in this scope
F:\temp\16139782.54799\Main.cc: In function 'int main()':
F:\temp\16139782.54799\Main.cc:89: error: 'scanf' was not declared in this scope
F:\temp\16139782.54799\Main.cc:91: error: 'printf' was not declared in this scope
*/

Double click to view unformatted code.


Back to problem 1082