状压dp
Error Man
我是菜逼
展开
-
poj 3254(状压dp入门)
题目链接:http://poj.org/problem?id=3254 状压dp一般范围都较小,这类dp一般数据范围有一项很小(好像是不超过16吧),看到这种数据范围就可以往状压上想 先提一下位运算, '&' 表示对两个数的二进制进行操作, 相同位如果都为1, 则此位最终结果为1。 y >>...原创 2018-07-25 10:32:13 · 305 阅读 · 0 评论 -
Gym - 101853E Maximum Sum(状压dp)
Maximum Sum You are given a grid consisting ofnrows each of which is dived intoncolumns. The rows are numbered from 1 tonfrom top to bottom, and the columns are numbered from 1 tonfrom left t...原创 2018-08-16 00:02:01 · 286 阅读 · 0 评论 -
ZOJ - 3954 Seven-Segment Display (状态压缩)
Seven-Segment Display A seven segment display, or seven segment indicator, is a form of electronic display device for displaying decimal numerals that is an alternative to the more complex dot matrix...原创 2018-08-28 16:53:13 · 198 阅读 · 0 评论 -
BZOJ 1087 [SCOI2005] 互不侵犯King(简单状压dp)
Description 在N×N的棋盘里面放K个国王,使他们互不攻击,共有多少种摆放方案。国王能攻击到它上下左右,以及左上,左下,右上,右下八个方向上附近的各一个格子,共8个格子。 Input 只有一行,包含两个数N,K ( 1 <=N <=9, 0 <= K <= N * N) Output 方案数。 Sample Input 3 2 Sample Output ...原创 2019-08-24 11:07:59 · 214 阅读 · 0 评论 -
POJ 3311.Hie with the Pie (状压dp + floyd)
Hie with the Pie The Pizazz Pizzeria prides itself in delivering pizzas to its customers as fast as possible. Unfortunately, due to cutbacks, they can afford to hire only one driver to do the deliveri...原创 2019-08-24 17:55:23 · 145 阅读 · 0 评论 -
HDU 3001(三进制状压 dp,TSP问题(附加: 每个点最多经过两次, 无需回到原点))
Travelling After coding so many days,Mr Acmer wants to have a good rest.So travelling is the best choice!He has decided to visit n cities(he insists on seeing all the cities!And he does not mind which...原创 2019-08-24 21:53:08 · 412 阅读 · 0 评论 -
POJ 1185 炮兵阵地(状压dp简单题)
司令部的将军们打算在NM的网格地图上部署他们的炮兵部队。一个NM的地图由N行M列组成,地图的每一格可能是山地(用"H" 表示),也可能是平原(用"P"表示),如下图。在每一格平原地形上最多可以布置一支炮兵部队(山地上不能够部署炮兵部队);一支炮兵部队在地图上的攻击范围如图中黑色区域所示: 如果在地图中的灰色所标识的平原上部署一支炮兵部队,则图中的黑色的网格表示它能够攻击到的区域:沿横向左右各两格...原创 2019-08-22 21:51:47 · 623 阅读 · 0 评论