日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

BZOJ 3870: Our happy ending( 状压dp )

發(fā)布時間:2025/5/22 编程问答 17 豆豆
生活随笔 收集整理的這篇文章主要介紹了 BZOJ 3870: Our happy ending( 状压dp ) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

dp(i, s)表示考慮了前i個數(shù)后, 能取到的數(shù)的集合為s時的方案數(shù).對于1~min(L, K)枚舉更新, 剩下的直接乘就好了. 復雜度O(T*K*2^N)。。。好像有點大, 但是可以AC。。。。

------------------------------------------------------------------------------

#include<cstdio>

?

#include<cstring>#include<algorithm>using namespace std;typedef long long ll;#define b(i) (1 << (i))const int MOD = 1000000007;int N, g, L, dp[b(21)];inline void upd(int &x, int t) {if((x += t) >= MOD) x -= MOD;}int main() {int T;scanf("%d", &T);while(T--) {scanf("%d%d%d", &N, &g, &L);memset(dp, 0, sizeof dp);dp[1] = 1;int All = b(g + 1) - 1;while(N--) {for(int s = All; s; s--) if(dp[s]) {int t = dp[s];for(int i = min(g, L); i; i--)upd(dp[s | ((s << i) & All) | b(i)], t);if(L > g) upd(dp[s], ll(t) * (L - g) % MOD);}}int ans = 0;for(int i = All; i; i--)if(i & b(g)) upd(ans, dp[i]);printf("%d\n", ans);}return 0;}

------------------------------------------------------------------------------

3870: Our happy ending

Time Limit:?10 Sec??Memory Limit:?256 MB
Submit:?146??Solved:?84
[Submit][Status][Discuss]

Description

There is an old country and the king fell in love with a devil. The devil always asks the king to do some crazy things. Although the king used to be wise and beloved by his people. Now he is just like a boy in love and can’t refuse any request from the devil. Also, this devil is looking like a very cute Loli.Y*wan still remember the day he first meets the devil. Now everything is done and the devil is gone. Y*wan feel very sad and suicide.You feel guilty after killing so many loli, so you suicide too.Nobody survive in this silly story, but there is still some hope, because this is just a silly background story during one programming contest!And the last problem is:Given a sequence a_1,a_2,...,a_n, if we can take some of them(each a_i can only be used once), and they sum to k, then we say this sequence is a good sequence.How many good sequence are there? Given that each a_i is an integer and 0<= a_i <= L.You should output the result modulo 10^9+7.

Input

The first line contains an integer T, denoting the number of the test cases.For each test case, the first line contains 3 integers n, k, L.T<=20, n,k<=20 , 0<=L<=10^9.

Output

For each cases, output the answer in a single line.

Sample Input

1
2 2 2

Sample Output

6

HINT

Source

By WJMZBMR

?

轉(zhuǎn)載于:https://www.cnblogs.com/JSZX11556/p/5175910.html

總結

以上是生活随笔為你收集整理的BZOJ 3870: Our happy ending( 状压dp )的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。