题解列表
1231杨辉三角,C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; int a[100][100]={1}; while(scanf("%d",……
数位 dp #2493: 信息学奥赛一本通T1589-不要 62(c++) 有注释
摘要:```
#include
using namespace std;
const int N =35;
//I位数字且最高位是J的答案数量
int f[N][10];
voi……
有较大数是用long(全部)
摘要:#include<stdio.h>
int judge(long n);
int main(void)
{
int i;
for(i = 0; i <= 200000; i+……
数位dp#2491: 信息学奥赛一本通T1587-Windy 数(C++)
摘要:```
#include
using namespace std;
const int N =11;
///一共有I位,最高位是J的windy数的个数
int f[N][10];……