# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
331823 | AlexPop28 | Restore Array (RMI19_restore) | C++11 | 537 ms | 25220 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>
#define dbg() cerr <<
#define name(x) (#x) << ": " << (x) << ' ' <<
using namespace std;
const int INF = (int)1e9 + 10;
struct Graph {
int n;
vector<bool> inq;
vector<int> dist, cnt_push;
vector<vector<pair<int, int>>> adj;
Graph(int n_) : n(n_), inq(n), dist(n, INF), cnt_push(n), adj(n) {}
void AddEdge(int from, int to, int cost) {
adj[from].emplace_back(to, cost);
}
vector<int> Solve() {
queue<int> q;
q.emplace(0);
dist[0] = 0;
inq[0] = true;
while (!q.empty()) {
int node = q.front(); q.pop();
for (auto &e : adj[node]) {
# | 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... |