- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在 usaco 上发现了算法问题,我无法链接到真正的问题,因为它需要身份验证,所以粘贴它。
You have just won a contest where the prize is a free vacation in Canada. You must travel via air, and the cities are ordered from east to west. In addition, according to the rules, you must start at the further city west, travel only east until you reach the furthest city east, and then fly only west until you reach your starting location. In addition, you may visit no city more than once (except the starting city, of course).
Given the order of the cities, with the flights that can be done (you can only fly between certain cities, and just because you can fly from city A to city B does not mean you can fly the other direction), calculate the maximum number of cities you can visit.
这是动态规划教程文本的一部分。本教程中还给出了解决方案的建议。
Imagine having two travelers who start in the western most city. The travelers take turns traveling east, where the next traveler to move is always the western-most, but the travelers may never be at the same city, unless it is either the first or the last city. However, one of the traveler is only allowed to make "reverse flights," where he can travel from city A to city B if and only if there is a flight from city B to city A.
It's not too difficult to see that the paths of the two travelers can be combined to create a round-trip, by taking the normal traveler's path to the eastern-most city, and then taking the reverse of the other traveler's path back to the western-most city. Also, when traveler x is moved, you know that the traveler y has not yet visited any city east of traveler x except the city traveler y is current at, as otherwise traveler y must have moved once while x was west of y.
据我了解解决方案,我认为可以通过为前向输出城市保留一个一维表和反向输出城市表来完成解决方案。例如。如果我有 5 个城市,A、B...E 按所需方向定向,城市之间的有向图是 A 是起始城市,E 是目的地。
A | B | C | D | E
A 0 | 1 | 0 | 0 | 0
B 0 | 0 | 1 | 1 | 0
C 1 | 0 | 0 | 0 | 1
D 0 | 0 | 0 | 0 | 1
E 0 | 0 | 1 | 0 | 0
我保留了两个表,一个用于即将离任的城市,我将通过将第一个城市初始化为 1 来填充它,即。访问的最大城市数,然后对于每个下一个条目,扫描存在到当前城市的路径的所有先前城市,然后选择最大值,对反向旅行者执行相同的操作。
table[i] = Max(j=i to 0) (table[j])
我会在目的地城市有最大值,但这并不能保证任何城市都不会重复。如果我在数组字段中保留一个条目以及最大数量,我将无法将它从正向切换到反向。我正在学习动态编程,所以可能我没有得到正确的想法。这是我为图表构建的表格
A | B | C | D | E
1 | 2 | 3 | 3 | 4
1 | 1 | 2 | 1 | 3
所以将从两者中取最大。请提供方向/提示,以便我可以朝着正确的方向前进。
附言。这不是作业题
最佳答案
您使用这两个表的方法独立地为每个旅行者建模状态,作为已经访问的城市数量,结合该旅行者当前停留的位置。正如您自己发现的那样,这不会阻止两次访问一个城市。
相反,我将使用三个元素对状态进行建模:一位旅行者当前所在的城市、另一位旅行者所在的城市,以及他们总共访问过的城市数量,即他们个人计数的总和.所以你会有一个 2d 表,而不是你的两个 1d 表。单元格 (f, r) 将包含当正向旅行者在城市 f 而反向旅行者在在城市 r。
您可能会按照最小元素的顺序遍历这些状态。这意味着您接下来将扩展一个您尚未扩展的状态,并且这两个数字中较小的一个在所有未扩展状态中是最小的。如果处于那种状态,f <r,那么您将使用它来更新状态(f',r>) 与 f'> r,如果有从 f 到 f' 的航类。另一方面,如果 r <f 你用 r 更新 (f, r') '> f 和从 r' 到 r 的航类。
在伪代码中:
first = (f: 0, r: 0) # tuple with two members, called f and r
todo = set { first } # a set with a tuple as its only element
visited = a map from tuples to integers, unset values defaulting to 0
visited[first] = 1
while todo is not empty:
best = ∞
cur = null
for t in todo:
if min(t.f, t.r) < best:
best = min(t.f, t.r)
cur = t
todo.remove(cur)
if (cur.f < cur.r):
for f' in cities where flights from f arrive:
next = (f: f', r: cur.r) # keep r but use f' as the new f
todo.add(next) # will do nothing if it already is in the set
visited[next] = max(visited[next], visited[cur] + 1)
else:
for r' in cities where flights to r depart:
next = (f: cur.f, r: r')
todo.add(next)
visited[next] = max(visited[next], visited[cur] + 1)
best = 0
for cur in keys of visited:
if best < visited[cur]:
if there is a flight from cur.f to cur.r: # can close the tour
best = visited[cur]
return best
关于algorithm - 找到从一个城市到另一个城市的路径,然后在没有城市重新访问的情况下返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13090958/
我是 Java 新手,这是我的代码, if( a.name == b.name && a.displayname == b.displayname && a.linknam
在下面的场景中,我有一个 bool 值。根据结果,我调用完全相同的函数,唯一的区别是参数的数量。 var myBoolean = ... if (myBoolean) { retrieve
我是一名研究 C++ 的 C 开发人员: 我是否正确理解如果我抛出异常然后堆栈将展开直到找到第一个异常处理程序?是否可以在不展开的情况下在任何 throw 上打开调试器(即不离开声明它的范围或任何更高
在修复庞大代码库中的错误时,我观察到一个奇怪的情况,其中引用的动态类型从原始 Derived 类型更改为 Base 类型!我提供了最少的代码来解释问题: struct Base { // some
我正在尝试用 C# 扩展给定的代码,但由于缺乏编程经验,我有点陷入困境。 使用 Visual Studio 社区,我尝试通过控制台读出 CPU 核心温度。该代码使用开关/外壳来查找传感器的特定名称(即
这可能是一个哲学问题。 假设您正在向页面发出 AJAX 请求(这是使用 Prototype): new Ajax.Request('target.asp', { method:"post", pa
我有以下 HTML 代码,我无法在所有浏览器中正常工作: 我试图在移动到
我对 Swift 很陌生。我如何从 addPin 函数中检索注释并能够在我的 addLocation 操作 (buttonPressed) 中使用它。我正在尝试使用压力触摸在 map 上添加图钉,在两
我设置了一个详细 View ,我是否有几个 Nib 文件根据在 Root View Controller 的表中选择的项目来加载。 我发现,对于 Nibs 的类,永远不会调用 viewDidUnloa
我需要动态访问 json 文件并使用以下代码。在本例中,“bpicsel”和“temp”是变量。最终结果类似于“data[0].extit1” var title="data["+bpicsel+"]
我需要使用第三方 WCF 服务。我已经在我的证书存储中配置了所需的证书,但是在调用 WCF 服务时出现以下异常。 向 https://XXXX.com/AHSharedServices/Custome
在几个 SO 答案(1、2)中,建议如果存在冲突则不应触发 INSERT 触发器,ON CONFLICT DO NOTHING 在触发语句中。也许我理解错了,但在我的实验中似乎并非如此。 这是我的 S
如果进行修改,则会给出org.hibernate.NonUniqueObjectException。在我的 BidderBO 类(class)中 @Override @Transactional(pr
我使用 indexOf() 方法来精细地查找数组中的对象。 直到此刻我查了一些资料,发现代码应该无法正常工作。 我在reducer中尝试了上面的代码,它成功了 let tmp = state.find
假设我有以下表格: CREATE TABLE Game ( GameID INT UNSIGNED NOT NULL, GameType TINYINT UNSIGNED NOT NU
代码: Alamofire.request(URL(string: imageUrl)!).downloadProgress(closure: { (progress) in
我是一名优秀的程序员,十分优秀!