# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
116027 | mosesmayer | Crocodile's Underground City (IOI11_crocodile) | C++17 | 798 ms | 73196 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 "crocodile.h"
#include <bits/stdc++.h>
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef pair<LL, LL> pll;
struct Edge{
int v;LL w;
Edge(){}
Edge(int v, LL w): v(v), w(w) {}
bool operator< (const Edge &rhs) const{
return w > rhs.w;
}
};
const int mxsz = 1e5 + 3;
int n, m, k;
vector<Edge> adj[mxsz];
LL d[mxsz];
pll best[mxsz];
priority_queue<Edge> pq;
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[]) {
n = N, m = M, k = K;
fill(best, best+n, make_pair(1e18, 1e18));
for (int i = 0, u, v; i < m; i++){
u = R[i][0], v = R[i][1];
adj[u].emplace_back(v, L[i]);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |