PTT
Submit
Submit
選擇語言
正體中文
简体中文
PTT
Prob_Solve
[問題] Maximum Independent Set(Greedy method)
作者:
cutekid
(可愛小孩子)
2016-10-16 18:02:39
Maximum Independent Set Greedy Method 如下:
Greedy(G):
S = {}
While G is not empty:
Let v be a node with minimum degree in G // 選擁有最小 degree 的點
S = union(S, {v})
remove v and its neighbors from G // 將選到的點和它的鄰居刪掉
return S
作者:
pttworld
(批踢踢世界)
2016-10-16 20:08:00
如果有題址我會去衝的。
作者:
aaaaajack
(丁丁是個人才)
2016-10-16 20:14:00
priority queue欸 不對 這樣會跟邊數相關還是n^2如果E<<V^2的話就是拔點的時候把鄰居degree-1丟進去可以做到O(E log V) 我猜可能可以再壓到O(E)要比O(E)再低可能就不是很合理啦 畢竟圖大小就那樣了每個degree建個list(vector) 點丟到list裡刪點的時候把鄰居degree-1,丟到他該去的list裡維護當前最小degree值 刪點頂多-1 所以至多回退V每個點只會出現在(移除時degree~原degree)的lsit中總數O(E) 所以整體來說應該是O(E)
繼續閱讀
[問題] google搜尋3個以上關鍵字的複雜度?
pizzafan
[問題] 請問更好的解法
allen7812
[問題] SPOJ VFDIV
pttworld
Re: [問題] Maximum Product
cutekid
Re: [問題] Maximum Product
pttworld
Re: [問題] Maximum Product
dibery
[問題] Maximum Product
cutekid
[問題] krsukal 跟 prim's algorithm
johnny94
[心得] Josephus problem
FRAXIS
Re: [問題] 最短路徑問題
pttworld
Links
booklink
Contact Us: admin [ a t ] ucptt.com