# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
9757 | dominyellow | Your life (kriii2_Y) | C++98 | 96 ms | 7600 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
#include <map>
#include <queue>
#include <set>
#include <vector>
using namespace std;
int situ_count, goal_num;
vector<vector<int> > graph;
vector<int> dijkstra(int v, int src){
vector<int> dist(v+1,987654321);
dist[src] = 0;
priority_queue<pair<int,int> > p_que;
p_que.push(make_pair(0,src));
while(!p_que.empty()){
int cost = -p_que.top().first;
int here = p_que.top().second;
p_que.pop();
if(cost > dist[here]){
continue;
}
for(int i=0;i<graph[here].size();i++){
int there = graph[here][i];
int nextDist = cost + 1;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |