第一道數字dp的題 不算特別難 轉移也好想 就是最後統計答案的時候注意 從高位往低位列舉的時候 一旦有不合法的值出現立即退出 後面統計的都會不合法
#include#include#includeusing namespace std;
const int maxn = 10;
int d[maxn+10][maxn+10], cur[maxn+10], len;
char s1[10], s2[10];
int x;
int main()
len = strlen(s2);
memset(cur, 0, sizeof(cur));
for(int i = 0; i < len; i++) cur[len-i] = s2[i] - '0';
for(int i = len; i >= 1; i--)
printf("%d\n", ans);
}}
HDU2089 不要62 數字DP
problem description 杭州人稱那些傻乎乎粘嗒嗒的人為62 音 laoer 杭州交通管理局經常會擴充一些的士車牌照,新近出來乙個好訊息,以後上牌照,不再含有不吉利的數字了,這樣一來,就可以消除個別的士司機和乘客的心理障礙,更安全地服務大眾。不吉利的數字為所有含有4或62的號碼。例如 ...
Hdu2089 不要62 數字dp
include includeint dp 10 3 dp i 0 為位數小於等於i且不含62也不含4的數字的個數 dp i 1 為位數為i且首位為2且不含62也不含4的數字的個數 dp i 2 為位數小於等於i且含62或4的數字的個數 int digit 10 void er int wei in...
hdu 2089 不要62 (數字dp)
思路 用變數記錄吉利數,和最高位為2的吉利數還有不是吉利數的個數。code include include includeusing namespace std int dp 10 3 dp i j i表示位數,j表示狀態 dp i 0 表示不存在不吉利數字 dp i 1 表示不存在不吉利數字,且最...