数位小孩()数位dp

#include
#include
#include
using namespace std;

const int N = 100;
#define int long long
int f[N][10][2];

bool ck(int x, int y) {
if (x < 0) return 1; if (x + y< 2) return false; x += y ; for (int i = 2; i <= x / i; i ++) if (x % i == 0) return false; return true; } void init () { f[1][1][1] = 1; f[1][0][0] = 1; for (int i = 2; i <= 9;

数位小孩()数位dp最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/17486.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>