- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个问题需要解决,涉及公司相互控制利益。如果 A 拥有 B 超过 50% 的股份,或者如果 A 拥有一系列其他公司,这些公司加在一起拥有 B 超过 50% 的股份,则该公司控制另一家公司。
我使用代表与所有公司的所有关系的顶点和边图来解决这个问题。
我认为我需要实现的是广度优先搜索(或者Dijkstra 算法 最长路径而不是最短路径),沿着公司之间的路径,只要从 A 到 B 的路径总和的权重大于 50%。我不知道如何实现它,因为我只能使用标准 Python 3.x 库 来解决这个问题。任何帮助将不胜感激!
示例输入
CompanyA CompanyB 30
CompanyB CompanyC 52
CompanyC CompanyD 51
CompanyD CompanyE 70
CompanyE CompanyD 20
CompanyD CompanyC 20
示例输出
CompanyA has a controlling interest in no other companies.
CompanyB has a controlling interest in CompanyC, CompanyD, and CompanyE.
CompanyC has a controlling interest in CompanyD, and CompanyE.
CompanyD has a controlling interest in CompanyE.
CompanyE has a controlling interest in no other companies.
到目前为止我的代码:
import sys
class Vertex:
def __init__(self, key):
self.id = key
self.connectedTo = {}
def addNeighbour(self, nbr, weight = 0):
self.connectedTo[nbr] = weight
def __str__(self):
return str(self.id) + 'connectedTo: ' + str([x.id for x in self.connectedTo])
def getConnections(self):
return self.connectedTo.keys()
def getId(self):
return self.id
def getWeight(self, nbr):
return self.connectedTo[nbr]
class Graph:
def __init__(self):
self.vertList = {}
self.numVerticies = 0
def addVertex(self, key):
self.numVerticies = self.numVerticies + 1
newVertex = Vertex(key)
self.vertList[key] = newVertex
return newVertex
def getVertex(self,n):
if n in self.vertList:
return self.vertList[n]
else:
return None
def __contains__(self, n):
return n in self.vertList
def addEdge(self, f, t, cost = 0):
if f not in self.vertList:
nv = self.addVertex(f)
if t not in self.vertList:
nv = self.addVertex(t)
self.vertList[f].addNeighbour(self.vertList[t], cost)
def getVertices(self):
return self.vertList.keys()
def __iter__(self):
return iter(self.vertList.values())
#all code above this line deals with the ADTs for Vertex and Graph objects
#all code below this line deals with taking input, parsing and output
def main():
f = sys.argv[1] #TODO deal with standard input later
temp = graphFunction(f)
def graphFunction(filename):
openFile = open(filename, 'r')
coList = []
g = Graph()
for line in openFile:
lineSplit = line.split()
g.addEdge(lineSplit[0], lineSplit[1], lineSplit[2])
coList.append(lineSplit[0])
coList.append(lineSplit[1])
coSet = set(coList)
coList = list(coSet) #converting this from a list to a set to a list removes all duplicate values within the original list
openFile.close()
#this is where there should be a Breadth First Search. Notthing yet, code below is an earlier attempt that kinda sorta works.
newConnList = [] #this is a list of all the new connections we're going to have to make later
for v in g: #for all verticies in the graph
for w in v.getConnections(): #for all connections for each vertex
#print("%s, %s, with weight %s" % (v.getId(), w.getId(), v.getWeight(w)))
#print(v.getId(), w.getId(), v.getWeight(w))
firstCo = v.getId()
secondCo = w.getId()
edgeWeight = v.getWeight(w)
if int(edgeWeight) > 50: #then we have a controlling interest situation
for x in w.getConnections():
firstCo2 = w.getId()
secondCo2 = x.getId()
edgeWeight2 = w.getWeight(x)
#is the secondCo2 already in a relationship with firstCo?
if x.getId() in v.getConnections():
#add the interest to the original interest
tempWeight = int(v.getWeight(x))
print(tempWeight)
tempWeight = tempWeight + int(w.getWeight(x))
newConnList.append((firstCo, secondCo2, tempWeight)) #and create a new edge
print('loop pt 1')
else:
newConnList.append((firstCo, secondCo2, edgeWeight2))
for item in newConnList:
firstCo = item[0]
secondCo = item[1]
edgeWeight = item[2]
g.addEdge(firstCo, secondCo, edgeWeight)
#print(item)
for v in g:
for w in v.getConnections():
print(v.getId(), w.getId(), v.getWeight(w))
main()
最佳答案
我相信深度优先搜索会是更好的方法,因为您需要知道谁拥有谁。
所以,我所做的是创建一个名为 com.txt
的文本文件,并在其中:
A B 30
B C 52
C D 51
D E 70
E D 20
D C 20
这是脚本:
从集合中导入 defaultdict,双端队列
with open('com.txt', 'r') as companies:
# Making a graph using defaultdict
connections = defaultdict(list)
for line in companies:
c1, c2, p = line.split()
connections[c1].append((c2, int(p)))
for item in connections:
q = deque([item])
used = set()
memory = []
while q:
c = q.pop()
if c in connections and c not in used:
memory.append(c)
to_add = [key for key, cost in connections[c] if cost > 50]
if to_add:
q.extend(to_add)
used.add(c)
else:
break
if len(memory) < 2:
print(memory[0], "does not own any other company")
else:
owner = memory[0]
comps = memory[1:]
print(owner, "owns", end=' ')
print(" and ".join(comps))
del used
当我第一次制作连接列表时,我过滤掉了没有一家公司 50% 所有权的变量。这个脚本产生:
{'A': [('B', 30)], 'C': [('D', 51)], 'B': [('C', 52)], 'E': [('D', 20)], 'D': [('E', 70), ('C', 20)]}
A does not own any other company
C owns D and E
B owns C and D and E
E does not own any other company
D owns E
正如预期的那样。
关于python - 广度优先搜索 - 标准 Python 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20280055/
我最近在读 CSAPP。在 10.9 节中,它说标准 I/O 不应该与 socket 一起使用,原因如下: (1) The restrictions of standard I/O Restricti
似乎是一个足够标准的问题,可以保证解决方案中的标准设计: 假设我想在文件中写入 x+2(或更少)个字符串。 x 字符串构成一个部分的内容,这两个字符串构成该部分的页眉和页脚。要注意的是,如果内容中没有
代码版本管理 在项目中,代码的版本管理非常重要。每个需求版本的代码开发在版本控制里都应该经过以下几个步骤。 在master分支中拉取该需求版本的两个分支,一个feature分支,
我有以下sql查询,我需要获取相应的hibernate条件查询 SELECT COUNT(DISTINCT employee_id) FROM erp_hr_payment WHERE payment
所以我正在编写一些代码,并且最近遇到了实现一些 mixin 的需要。我的问题是,设计混音的正确方法是什么?我将使用下面的示例代码来说明我的确切查询。 class Projectile(Movable,
我的环境变量包含如下双引号: $echo $CONNECT_SASL_JAAS_CONFIG org.apache.kafka.common.security.plain.PlainLoginModu
示例: /** * This function will determine whether or not one string starts with another string. * @pa
有没有办法在 Grails 中做一个不区分大小写的 in 子句? 我有这个: "in"("name", filters.tags) 我希望它忽略大小写。我想我可以做一个 sqlRestriction
我搜索了很长时间,以查找将哪些boost库添加到std库中,但是我只找到了一个新库的完整列表(如此处:http://open-std.org/jtc1/sc22/wg21/docs/library_t
我已经通过使用这个肮脏的黑客解决了我的问题: ' Filter managerial functions ActiveSheet.Range("$A$1:$BW$2211").Auto
因此,我很难理解我需要遵循的标准,以便我的 Java 程序能够嵌入 HTML。我是否只需将我的主类扩展到 Applet 类,或者我还需要做更多的事情吗?另外,在我见过的每个 Applet 示例中,它都
我对在 Hibernate 中使用限制有疑问。 我必须创建条件,设置一些限制,然后选择日期字段最大值的记录: Criteria query = session.createCriteria(Stora
我有标准: ICriteria criteria = Session.CreateCriteria() .SetFetchMode("Entity1", FetchMo
我很难编写条件来选择所有子集合或孙集合为空的实体。我可以将这些作为单独的条件来执行,但我无法将其组合成一个条件。 类结构: public class Component { p
@Entity class A { @ManyToMany private List list; ... } @Entity class B { ... } 我想使用条件(不是 sql 查询)从 A
我的数据库中有以下表结构: Table A: Table B: Table C: _______________
请帮助我: 我有下一张 table : 单位 ID 姓名 用户 ID 姓名 利率 单位 ID 用户 ID 我不明白如何从 SQL 创建正确的条件结构: 代码: SELECT * FROM Unit W
我正在构建一个包含项目的网站,每个项目都有一个页面,例如: website.com/book/123 website.com/film/456 website.com/game/789 每个项目都可以
我需要使用两个属性的组合来过滤结果列表。一个简单的 SQL 语句如下所示: SELECT TOP 10 * FROM Person WHERE FirstName + ' ' + LastName L
我有一个“ super 实体”SuperEntity 和三个扩展父类(super class)的实体 ChildEntity1、...、ChildEntity3。 搜索数据库中的所有实体很容易,即我们
我是一名优秀的程序员,十分优秀!