| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1314836 | Zone_zonee | Computer Network (BOI14_network) | C++20 | 49 ms | 4348 KiB |
#include <bits/stdc++.h>
#include "network.h"
void findRoute (int N, int a, int b)
{
using namespace std;
int dist = ping(a, b);
priority_queue<pair<int, int>> ans;
while(!ans.empty()){
auto [d, u] = ans.top(); ans.pop();
// cerr << u << '\n';
travelTo(u);
}
travelTo(b);
}
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... | ||||
