hdu 2089 不要62 數字dp

2021-08-07 13:20:52 字數 431 閱讀 9441

這個題之前學數字dp的時候做過,但是水過兩個水題之後就不再學數字dp了,知難而退了。不過題不刷始終還是不會,專練練數字dp。

以前看的是《初探數字dp》,現在看的

先套一下大神的模板,體會下模板的作用。模板自己一步步看看就看懂了。

這裡有個模板變數的講解。

#include 

#include

int digit[10];

int len;

int f[10][2];

void calc(int num)

}int dfs(int i, int s, bool e)

return e ? res : f[i][s] = res;

}int solve(int num)

int main()

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 表示不存在不吉利數字,且最...