-
Notifications
You must be signed in to change notification settings - Fork 43
/
employee-importance.py
168 lines (155 loc) · 4.53 KB
/
employee-importance.py
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# V0
"""
# Employee info
class Employee:
def __init__(self, id, importance, subordinates):
# It's the unique id of each node.
# unique id of this employee
self.id = id
# the importance value of this employee
self.importance = importance
# the id of direct subordinates
self.subordinates = subordinates
"""
class Solution:
"""
@param imput:
@param id:
@return: the total importance value
"""
def getImportance(self, employees, id):
# Write your code here.
def dfs(id):
count = G[id][0]
for sub in G[id][1]:
count += dfs(sub)
return count
G = {}
for emp in employees:
G[emp.id] = [emp.importance, emp.subordinates]
return dfs(id) if id in G else 0
# V1
# https://www.jiuzhang.com/solution/employee-importance/#tag-highlight-lang-python
# IDEA : DFS + PROBLEM GIVE FUNC
class Solution:
"""
@param imput:
@param id:
@return: the total importance value
"""
def getImportance(self, employees, id):
# Write your code here.
def dfs(id):
count = G[id][0]
for sub in G[id][1]:
count += dfs(sub)
return count
G = {}
for emp in employees:
G[emp.id] = [emp.importance, emp.subordinates]
return dfs(id) if id in G else 0
# V1'
# https://blog.csdn.net/fuxuemingzhu/article/details/79091343
"""
# Employee info
class Employee(object):
def __init__(self, id, importance, subordinates):
# It's the unique id of each node.
# unique id of this employee
self.id = id
# the importance value of this employee
self.importance = importance
# the id of direct subordinates
self.subordinates = subordinates
"""
class Solution(object):
def getImportance(self, employees, id):
"""
:type employees: Employee
:type id: int
:rtype: int
"""
employee_dict = {employee.id : employee for employee in employees}
def dfs(id):
return employee_dict[id].importance + sum(dfs(id) for id in employee_dict[id].subordinates)
return dfs(id)
# V1''
# https://blog.csdn.net/fuxuemingzhu/article/details/79091343
class Solution:
def getImportance(self, employees, id):
"""
:type employees: Employee
:type id: int
:rtype: int
"""
emap = {employee.id : employee for employee in employees}
res = emap[id].importance
for sub in emap[id].subordinates:
res += self.getImportance(employees, sub)
return res
# V1'''
# https://www.jiuzhang.com/solution/employee-importance/#tag-highlight-lang-python
class Solution:
"""
@param imput:
@param id:
@return: the total importance value
"""
def getImportance(self, employees, id):
# Write your code here.
def dfs(id):
count = G[id][0]
for sub in G[id][1]:
count += dfs(sub)
return count
G = {}
for emp in employees:
G[emp.id] = [emp.importance, emp.subordinates]
return dfs(id) if id in G else 0
# V2
# Time: O(n)
# Space: O(h)
"""
# Employee info
class Employee(object):
def __init__(self, id, importance, subordinates):
# It's the unique id of each node.
# unique id of this employee
self.id = id
# the importance value of this employee
self.importance = importance
# the id of direct subordinates
self.subordinates = subordinates
"""
import collections
class Solution(object):
def getImportance(self, employees, id):
"""
:type employees: Employee
:type id: int
:rtype: int
"""
if employees[id-1] is None:
return 0
result = employees[id-1].importance
for id in employees[id-1].subordinates:
result += self.getImportance(employees, id)
return result
# Time: O(n)
# Space: O(w), w is the max number of nodes in the levels of the tree
import collections
class Solution2(object):
def getImportance(self, employees, id):
"""
:type employees: Employee
:type id: int
:rtype: int
"""
result, q = 0, collections.deque([id])
while q:
curr = q.popleft()
employee = employees[curr-1]
result += employee.importance
for id in employee.subordinates:
q.append(id)
return result