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

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

UESTC 1851 Kings on a Chessboard

發(fā)布時間:2024/6/14 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 UESTC 1851 Kings on a Chessboard 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
狀壓DP。。。

Kings on a Chessboard

Time Limit:?10000msMemory Limit:?65535KBThis problem will be judged on UESTC. Original ID:?1851
64-bit integer IO format:?%lld????? Java class name:?MainPrev?Submit?Status?Statistics?Discuss?NextFont Size:?+?-Type:??None?Graph Theory?????2-SAT?????Articulation/Bridge/Biconnected Component?????Cycles/Topological Sorting/Strongly Connected Component?????Shortest Path?????????Bellman Ford?????????Dijkstra/Floyd Warshall?????Euler Trail/Circuit?????Heavy-Light Decomposition?????Minimum Spanning Tree?????Stable Marriage Problem?????Trees?????Directed Minimum Spanning Tree?????Flow/Matching?????????Graph Matching?????????????Bipartite Matching?????????????Hopcroft–Karp Bipartite Matching?????????????Weighted Bipartite Matching/Hungarian Algorithm?????????Flow?????????????Max Flow/Min Cut?????????????Min Cost Max Flow?DFS-like?????Backtracking with Pruning/Branch and Bound?????Basic Recursion?????IDA* Search?????Parsing/Grammar?????Breadth First Search/Depth First Search?????Advanced Search Techniques?????????Binary Search/Bisection?????????Ternary Search?Geometry?????Basic Geometry?????Computational Geometry?????Convex Hull?????Pick's Theorem?Game Theory?????Green Hackenbush/Colon Principle/Fusion Principle?????Nim?????Sprague-Grundy Number?Matrix?????Gaussian Elimination?????Matrix Exponentiation?Data Structures?????Basic Data Structures?????Binary Indexed Tree?????Binary Search Tree?????Hashing?????Orthogonal Range Search?????Range Minimum Query/Lowest Common Ancestor?????Segment Tree/Interval Tree?????Trie Tree?????Sorting?????Disjoint Set?String?????Aho Corasick?????Knuth-Morris-Pratt?????Suffix Array/Suffix Tree?Math?????Basic Math?????Big Integer Arithmetic?????Number Theory?????????Chinese Remainder Theorem?????????Extended Euclid?????????Inclusion/Exclusion?????????Modular Arithmetic?????Combinatorics?????????Group Theory/Burnside's lemma?????????Counting?????Probability/Expected Value?Others?????Tricky?????Hardest?????Unusual?????Brute Force?????Implementation?????Constructive Algorithms?????Two Pointer?????Bitmask?????Beginner?????Discrete Logarithm/Shank's Baby-step Giant-step Algorithm?????Greedy?????Divide and Conquer?Dynamic Programming? ? ?? ?? ?? ?? ???Tag it!

You are given a chessboard of size x * y and k identical kings, and are asked to place all the kings on the board such that no two kings can attack each other. Two kings can attack each other if they are horizontally, vertically or diagonally adjacent.
Write a computer program that calculates the number of possible arrangements of the k kings on the given chessboard. Since the number of feasible arrangements may be large, reduce the number modulo 1,000,000,007.

Input

The first line of the input consists of a single integer T, the number of test cases. Each of the following T lines consists of three integers x; y and k,separated by one space.

0 < T <= 50
2 <= x; y <= 15
1 <= k <= x*y

Output

For each test case, output the number of possibilities modulo 1,000,000,007.

Sample Input

4
8 8 1
7 7 16
7 7 7
3 7 15

Sample Output

64
1
2484382
0

Source

IDI Open 2013 Programming Contest


#include?<iostream>
#include?<cstdio>
#include?<cstring>

using?namespace?std;

const?int?MOD=1000000007;

inline?bool?legal(int?x,int?y)?{return?x&y;}
long?long?int?dp[16][1600][250];
int?r,c,nums,state[1600],people[1600],kth;

bool?isOK(int?xia,int?shang)
{
????int?x=state[xia],y=state[shang];
????if(legal(x,y))?return?false;
????if(legal(x<<1,y)||legal(x>>1,y))?return?false;
????return?true;
}

int?main()
{
????int?t;
????scanf("%d",&t);
????while(t--)
????{
????????memset(dp,0,sizeof(dp));
????????scanf("%d%d%d",&r,&c,&kth);
????????if(kth>(r+1)/2*(c+1)/2)
????????{
????????????puts("0");
????????????continue;
????????}
????????if(c>r)?swap(r,c);
????????///zuangtai
????????nums=0;
????????memset(state,0,sizeof(state));
????????memset(people,0,sizeof(people));
????????for(int?i=0;i<(1<<c);i++)
????????{
????????????if(legal(i,i<<1)||legal(i,i>>1))?continue;
????????????state[nums]=i;
????????????int?k=i;
????????????while(k)
????????????{
????????????????if(k&1)?people[nums]++;
????????????????k=k>>1;
????????????}
????????????nums++;
????????}
????????///the?firstline
????????for(int?i=0;i<nums;i++)
????????{
????????????dp[1][people]=1;
????????}
????????for(int?i=2;i<=r;i++)
????????{
????????????for(int?j=0;j<nums;j++)
????????????{
????????????????for(int?k=0;k<nums;k++)
????????????????{
????????????????????if(!isOK(j,k))?continue;
????????????????????for(int?l=people[k];l<250;l++)
????????????????????{
????????????????????????if(l+people[j]<250)
????????????????????????????dp[j][l+people[j]]=(dp[j][l+people[j]]+dp[i-1][k][l])%MOD;
????????????????????}
????????????????}
????????????}
????????}
????????long?long?int?ans=0;
????????for(int?j=0;j<nums;j++)
????????{
????????????ans=(ans+dp
[j][kth])%MOD;
????????}
????????printf("%lld\n",ans%MOD);
????}
????return?0;
}
* This source code was highlighted by?YcdoiT. ( style: Codeblocks )

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

總結(jié)

以上是生活随笔為你收集整理的UESTC 1851 Kings on a Chessboard的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

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