题解列表
数位dp #2490: 信息学奥赛一本通T1586-数字游戏(C++) 看注释
摘要:```
#include
using namespace std;
const int N =15;
//I位数字且最高位是J的不降数的个数
int f[N][N];
vo……
数位dp#2491: 信息学奥赛一本通T1587-Windy 数(C++)
摘要:```
#include
using namespace std;
const int N =11;
///一共有I位,最高位是J的windy数的个数
int f[N][10];……
有较大数是用long(全部)
摘要:#include<stdio.h>
int judge(long n);
int main(void)
{
int i;
for(i = 0; i <= 200000; i+……