Last active
December 11, 2015 14:53
-
-
Save tsu-nera/73eba5e1f781da70470e to your computer and use it in GitHub Desktop.
SRM 675 Div2 500
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| import math,string,itertools,fractions,heapq,collections,re,array,bisect | |
| class ShortestPathWithMagic: | |
| def getTime(self, adj, k): | |
| n = len(adj) | |
| d = [[0 for i in range(n)] for j in range(n)] | |
| # convert string to number | |
| for row in range(n): | |
| for col in range(n): | |
| d[row][col] = int(adj[row][col]) | |
| minCost = [[float('inf') for j in range(k + 1)] for i in range(n)] | |
| pq = [] | |
| heapq.heappush(pq, (0, 0, 0)) | |
| while len(pq) != 0: | |
| cost, ind, cnt = heapq.heappop(pq) | |
| if minCost[ind][cnt] > cost: | |
| minCost[ind][cnt] = cost | |
| for i in range(n): | |
| if i == ind: | |
| continue | |
| heapq.heappush(pq, (d[ind][i] + cost, i, cnt)) | |
| if cnt < k: | |
| heapq.heappush(pq, (d[ind][i] * 0.5 + cost, i, cnt + 1)) | |
| ret = float('inf') | |
| for i in range(k + 1): | |
| ret = min(ret, minCost[1][i]) | |
| return ret |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment