# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
120810 | nvmdava | Bridges (APIO19_bridges) | C++17 | 2506 ms | 10048 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 <bits/stdc++.h>
using namespace std;
#define SIZE 400
#define N 50005
#define M 100005
int ans[M], n, m;
struct Path{
int w, id, v, u;
bool act = 0;
Path(int _v, int _u, int _w, int _id){
w = _w; v = _v; u = _u; id = _id;
}
bool operator<(const Path& rhs) const {
return w > rhs.w;
}
};
struct Query{
int w, id, v;
Query(int _v, int _w, int _id){
w = _w; id = _id, v = _v;
}
bool operator<(const Query& rhs) const {
return w > rhs.w;
}
};
struct Update{
int id, w, v;
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... |