NC20207. [JSOI2013]美丽家园
描述
输入描述
仅有一行包含三个用空格隔开的正整数 N,M,P, 1 ≤ N ≤ 10^100 1 ≤ M ≤ 5,1 ≤ P ≤ 10000,分别与题目描述中的数据对应。
输出描述
输出总方案数对P 取模后的结果。
示例1
输入:
2 2 5
输出:
4
C++(clang++ 11.0.1) 解法, 执行用时: 102ms, 内存消耗: 5604K, 提交时间: 2022-12-09 16:49:42
#include <cstdio> #include <cstring> using namespace std; const int M = 1 << 5,N = 110; struct jz { int s[M][M]; } s,re; struct gjd { int len,s[N]; } n; int m,P,len; bool p[2][M]; char in[N]; bool check(int x,int t) { if (x == 1) return true; if (p[0][x] != t || p[0][x - 1] != t || p[1][x - 1] != t) return true; return false; } void dfs(int st,int dep,int h,int last) { if (h == 0) { if (dep > m) { dfs(0,1,2,st); return; } p[0][dep] = true; dfs(st << 1 | 1,dep + 1,h,0); p[0][dep] = false; dfs(st << 1,dep + 1,h,0); } else { if (dep > m) { s.s[last][st] = 1; return; } if (check(dep,1)) { p[1][dep] = true; dfs(st << 1 | 1,dep + 1,h,last); p[1][dep] = false; } if (check(dep,0)) dfs(st << 1,dep + 1,h,last); } } jz calc(jz a,jz b) { jz c; memset(c.s,0,sizeof(c.s)); for (int k = 0;k <= len;k ++) { for (int i = 0;i <= len;i ++) { for (int j = 0;j <= len;j ++) { c.s[i][j] = (c.s[i][j] + a.s[i][k] * b.s[k][j] % P) % P; } } } return c; } void div() { for (int i = n.len;i;i --) { if (i > 1) n.s[i - 1] += (n.s[i] & 1) * 10; n.s[i] /= 2; } while (!n.s[n.len]) n.len --; } void fast() { if (n.len == 1 && n.s[1] == 1) return; int flag = 0; if (n.s[1] & 1) flag = 1; div(); fast(); re = calc(re,re); if (flag) re = calc(re,s); } void init() { scanf(" %s%d%d",&in,&m,&P); n.len = strlen(in); int i; for (i = 0;i < n.len;i ++) if (in[i] == ' ') break; for (int j = i - 1;j >= 0;j --) n.s[i - 1 - j + 1] = in[j] - '0'; } int main() { init(); if (n.len == 1 && n.s[1] == 1) printf("%d",(1 << m) % P); else { n.s[1] --; int i = 1; while (n.s[i] < 0) n.s[i] += 10,n.s[i + 1] --,i ++; while (!n.s[n.len]) n.len --; len = (1 << m) - 1; dfs(0,1,0,0); memcpy(re.s,s.s,sizeof(s.s)); fast(); int ans = 0; for (int i = 0;i <= len;i ++) { for (int j = 0;j <= len;j ++) ans = (ans + re.s[i][j]) % P; } printf("%d",ans); } }