- 921. Minimum Add to Make Parentheses Valid 使括号有效的最少添加
- 915. Partition Array into Disjoint Intervals 分割数组
- 932. Beautiful Array 漂亮数组
- 940. Distinct Subsequences II 不同的子序列 II
题目地址:https://leetcode.com/problems/cat-and-mouse/description/
Agame on an undirected
graph is played by two players, Mouse and Cat, who alternate turns.
Thegraph is given as follows: graph[a]
is a list of all nodes b
such that ab
is an edge of the graph.
Mouse starts at node 1 and goes first, Cat starts at node 2 and goes second, and there is a Hole at node 0.
During each player's turn, they must travel along one edge of the graph that meets where they are. For example, if the Mouse is at node 1
, it must
travel to any node in graph[1]
.
Additionally, it is not allowed for the Cat to travel to the Hole (node 0.)
Then, the game can end in 3 ways:
Given a graph
, and assuming both players play optimally, return 1
if the game is won by Mouse, 2
if the game is won by Cat, and 0
if the game is a draw.
Example 1:
Input: [[2,5],[3],[0,4,5],[1,4,5],[2,3],[0,2,3]]
Output: 0
Explanation:
4---3---1
| |
2---5
\ /
0
Note:
1、 3<=graph.length<=50;
2、 Itisguaranteedthatgraph[1]isnon-empty.;
3、 Itisguaranteedthatgraph[2]containsanon-zeroelement.;
猫鼠游戏。
有一张无向图,包含最多50个结点。有两个玩家(Mouse和Cat)在图上,Mouse的起始位置是1,Cat的起始位置是2,0处有一个洞,Cat不能移动到0。Mouse和Cat在图上轮流移动,每次必须移动到与当前结点相邻的一个结点。
游戏有三种结束的可能:
1、 Cat和Mouse进入同一结点,则Cat胜利;
2、 Mouse进入0结点,则Mouse胜利;
3、 Cat和Mouse的位置和回合发生了重复,则平局;
问:如果Cat和Mouse都以最优策略行动,最后的结果是什么?
这个题实在太难了,我只能参考别人的做法了。正确的做法应该是BFS,而且是已知结果倒着求过程的BFS。
设计节点状态是(m,c,turn),用color[m][c][turn]来记忆该状态的输赢情况.
首先我们将所有已知的确定状态加入一个队列.已知状态包括(0,c,turn)肯定是老鼠赢,(x,x,turn)且x!=0肯定是猫赢。我们尝试用BFS的思路,将这些已知状态向外扩展开去.
扩展的思路是:从队列中取出队首节点状态(m,c,t),找到它的所有邻接的parent的状态(m2,c2,t2).这里的父子关系是指,(m2,c2,t2)通过t2轮(老鼠或猫)的操作,能得到(m,c,t).我们发现,如果(m,c,t)是老鼠赢而且t2是老鼠轮,那么这个(m2,c2,t2)一定也是老鼠赢.同理,猫赢的状态也类似.于是,我们找到了一种向外扩展的方法.
向外扩展的第二个思路是:对于(m2,c2,t2),我们再去查询它的所有children(必定是对手轮)是否都已经标注了赢的状态.如果都是赢的状态,那么说明(m2,c2,t2)无路可走,只能标记为输的状态.特别注意的是,第一条规则通过child找parent,和第二条规则通过parent找child的算法细节是不一样的,一定要小心.
这样我们通过BFS不断加入新的探明输赢的节点.直到队列为空,依然没有探明输赢的节点状态,就是平局的意思!
最后输出(1, 2, MOUSE)的颜色。没有被染过色说明是平局。
时间复杂度是O(VE),空间复杂度是O(V).
class Solution(object):
def catMouseGame(self, graph):
"""
:type graph: List[List[int]]
:rtype: int
"""
N = len(graph)
MOUSE, CAT = 1, 2
mouse, cat, turn
color = [[[0] * 3 for i in range(N)] for j in range(N)]
q = collections.deque()
for i in range(1, N):
for t in range(1, 3):
color[0][i][t] = 1
q.append((0, i, t))
color[i][i][t] = 2
q.append((i, i, t))
while q:
curStatus = q.popleft()
cat, mouse, turn = curStatus
for preStatus in self.findAllPrevStatus(graph, curStatus):
preCat, preMouse, preTurn = preStatus
if color[preCat][preMouse][preTurn] != 0:
continue
if color[cat][mouse][turn] == 3 - turn:
color[preCat][preMouse][preTurn] = preTurn
q.append(preStatus)
elif self.allNeighboursWin(color, graph, preStatus):
color[preCat][preMouse][preTurn] = 3 - preTurn
q.append(preStatus)
return color[1][2][1]
def findAllPrevStatus(self, graph, curStatus):
ret = []
mouse, cat, turn = curStatus
if turn == 1:
for preCat in graph[cat]:
if preCat == 0:
continue
ret.append((mouse, preCat, 2))
else:
for preMouse in graph[mouse]:
ret.append((preMouse, cat, 1))
return ret
def allNeighboursWin(self, color, graph, status):
mouse, cat, turn = status
if turn == 1:
for nextMouse in graph[mouse]:
if color[nextMouse][cat][2] != 2:
return False
elif turn == 2:
for nextCat in graph[cat]:
if nextCat == 0:
continue
if color[mouse][nextCat][1] != 1:
return False
return True
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
https://zhanghuimeng.github.io/post/leetcode-913-cat-and-mouse/ https://github.com/wisdompeak/LeetCode/tree/master/BFS/913.Cat-and-Mouse
DDKK.COM 弟弟快看-教程,程序员编程资料站,版权归原作者所有
本文经作者:负雪明烛 授权发布,任何组织或个人未经作者授权不得转发
我想检测 Area2D 内的鼠标单击(并按住),然后检测 Area2D 内部或外部的鼠标释放。 这是我目前所拥有的: extends Area2D #PickArea func _input_even
鼠标上的以下按钮在哪里? 编辑: jack 回答后,我在括号中添加了位置。 mouse-1(向左按钮) mouse-2(单击车轮按钮/中间按钮) mouse-3(右键) mouse-4(振铃) mou
这是我的问题;我正在尝试显示“标记”,并在鼠标悬停/移出/单击上进行一些操作。 问题是,根本没有任何事件在over上触发,当在控制台中单击(向下)时,我收到了一些反馈,但不是每个元素的反馈说(目标==
我将从 Textmate 切换到 SublimeText 2。 在 TextMate 中,只需单击行号即可用鼠标为该行添加书签。我这样做已经很多年了,虽然我确信有些人可能更喜欢键盘快捷键,但我不是其中
如何在JavaScript中获取“mouse key up”的按键代码? 如果我按下鼠标左键,那么键码就是一个。 我想在 onmousekeyup 时触发一些代码。但是只要鼠标按下键,这段代码就不会触
我想要实现的是,我想让它像星级评定一样工作。当你进入鼠标时,星星变成黄色,当你离开鼠标时,它变成灰色,然后如果你再次点击它变成黄色。 不知道如何实现它,我添加了代码来向您展示我到目前为止所做的尝试。
我刚刚发现:set mouse=a .令人惊奇的是,它允许我的同事滚动浏览我的 openend 文件。 但事情是这样的:当我左键单击某处时,我真的不希望光标移动。我不想要 :set mouse=a 的
我正在使用官方 highcharts 包装器进行 react 以生成甘特图。我试图从鼠标悬停事件中获取鼠标坐标并将其用于自定义工具提示,但坐标不精确。 例子: https://stackblitz.c
我在 reactjs 上创建了一个简单的组件(一种值选择器:plunker) 现在,我希望隐藏控件的上部和下部 (opacity=0) 并在用户将鼠标悬停在中央 时动画化为 opacity=1 >di
我正在编写一个测试,它在Cuprite::Ferrum上运行,我需要在其中单击一个元素,并将其拖放到页面上另一个元素的下方。当我手动操作时,它工作得很好,但当我尝试将其放在测试中时,它几乎可以工作,但
I want to record mouse and keyboard simultaneously and replay them later. When MIDDLE MOUSE is pr
我为 3d 射击游戏添加了主要用户对象,为其附加了摄像头,并试图在脚本代码中捕捉鼠标移动,附加到玩家游戏对象。但是不能使用Input.GetAxis("Mouse X")、Input.GetAxis(
我是 Unity 脚本的新手,我正在尝试制作 ThirdPersonCamera,所以关注 this tutorial他可以正确上下左右移动鼠标 使用的脚本是 posY += Input.GetAxi
Fotorama slider : slider 设置为 Autoplay="true",效果很好。如何让 slider 在鼠标悬停时暂停,然后在鼠标移开时恢复自动播放?这是我的代码: 最佳答案 v
我在 Windows 窗体中有一个 TreeView 。当我左键单击 TreeView 中的一个节点时,e.Node 显示正确的值,但是当我右键单击同一节点时,e.Node 在 trreview Af
是涉及到寄存器还是缓存内存相关? 我的问题的说明性示例可能很简单,我将鼠标移过我当前正在输入的屏幕。我不点击任何东西,我只是将箭头从左到右、上下移动。 CPU 如何处理鼠标相对于显示器显示的瞬时位置变
用户可以使用一个非常简单的工具(在按住 LMB 的同时移动鼠标)在我的应用程序中绘制草图。这会导致一系列 mousemove 事件,我会在每个事件中记录光标位置。生成的折线曲线往往相当密集,几乎每隔一
我有一些新手问题。 在我的应用程序 (processingjs) 中,我使用 scale() 和 translate() 来允许用户缩放和滚动场景。只要我将比例设置为 1.0,我就没有问题。但是每当我
我正在寻找一个在 XP/Vista/7 中工作的全局鼠标钩子(Hook),它允许我访问鼠标输入的 X、Y 值,并在它们到达 Windows 之前修改这些值...... 我还希望能够在实际鼠标输入之间模
我正在使用mousejoint来拖动box2d中的物体,但这会导致惯性延迟。 是否存在即时拖动 body 的任何方式? 最佳答案 解决方案是在b2MouseJointDef中调整属性frequency
我是一名优秀的程序员,十分优秀!