dijkstraWithLoops

fun dijkstraWithLoops(graph: Map<Int, List<Pair<Int, Int>>>, start: Int): Pair<Map<Int, Int>, Map<Int, Int>>