# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
876902 | andrei_iorgulescu | Toll (BOI17_toll) | C++14 | 439 ms | 12216 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;
int inf = 1e9;
int k,n,m,q,t;
vector<pair<int,int>>g[50005],gr[50005];
int ans[10005];
int dist[50005];
struct ura
{
int x,y,idx;
};
void dijkstral(int start,int leftbound)
{
priority_queue<pair<int,int>>pq;
pq.push({0,start});
while (!pq.empty())
{
int timp = -pq.top().first,nod = pq.top().second;
pq.pop();
if (dist[nod] == inf)
{
dist[nod] = timp;
for (auto vecin : gr[nod])
{
if (vecin.first >= leftbound)
# | 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... |