摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=3943题目意思是说一个数字由X个4和Y个7和其他不包含4和7的数字组成,则这个数是Nya数,求给定区间的第K个Nya数。 1 #include 2 #include 3 #include 4 using namespace std; 5 #define N 25 6 #define ll __int64 7 ll dp[N][N][N],p,q,x,y; 8 void init() 9 {10 memset(dp,0,sizeof(dp));11 dp[0][0][0]=1;12 ... 阅读全文