数位小孩()数位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成神之路。
共有 0 条评论