HDU 3555 (递推&&记忆化)
摘要:
#include#include#define max 25typedef __int64 LL;LL dp[max][3];//dp[i][0] 不含49//dp[i][1] 不含49但最高位为9//dp[i][2] 含49void init(){ memset(dp,0,sizeof... 阅读全文
posted @ 2013-08-11 15:15 Stomach_ache 阅读(128) 评论(0) 推荐(0)