# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1115014 | AdamGS | Olympic Bus (JOI20_ho_t4) | C++17 | 1 ms | 504 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 para pair<int, int>
using namespace std;
const int inf = INT_MAX; //nieskończoność
//struktura, która będzie przechowywać wierchołki grafu
struct G{
vector <para > pol; //z jakim wierzchołkiem, waga
int odl = inf; //najkrótsza ścieżka od źródła (na początku nieskończoność)
}*wezel;
void dijkstra(int start)
{
int dystans, a, b;
wezel[start].odl = 0;
set <para > krawedzie; //odleglosc od źródła, ( -> b)
//dodanie wszystkich wag krawędzi oraz numery wierzchołków docelowych
for(int i=0; i<wezel[start].pol.size();i++)
krawedzie.insert({wezel[start].pol[i].second, wezel[start].pol[i].first});
//lub
// krawedzie.insert(make_pair(wezel[start].pol[i].second, wezel[start].pol[i].first));
while(!krawedzie.empty()) //dopóki w secie są jeszcze jakieś krawędzie do analizy
{
//pobranie najkrótszej ścieżki oraz wierzchołek, do którego ona prowadzi
dystans = krawedzie.begin()->first; //dystans
b = krawedzie.begin()->second; //wierzchołek
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... |