# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
139732 | muradeyn | Shortcut (IOI16_shortcut) | C++14 | 2 ms | 376 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 "shortcut.h"
#include <bits/stdc++.h>
#define F first
#define S second
using namespace std;
const int maxx = 6000;
const long long inf = 10000000000000000LL;
int n , nxt;
long long x , w , old , res , mn;
long long adj[maxx][maxx] , d[maxx];
priority_queue< pair<long long,int> >q;
void bfs(int s) {
for (int i = 0;i<nxt;i++)d[i] = inf;
d[s] = 0;
q.push( {0 , s} );
while (!q.empty()) {
x = q.top().S;
w = q.top().F;
q.pop();
if (-w > d[x])continue;
for (int i = 0;i<nxt;i++) {
if (adj[x][i] == 0)continue;
if (d[i] > d[x] + adj[x][i]) {
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |