# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
431525 | idk321 | Stations (IOI20_stations) | C++17 | 1200 ms | 824 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 "stations.h"
#include <vector>
using namespace std;
#include <bits/stdc++.h>
const int M = 1000000000;
const int N = 1000;
int in[N];
int out[N];
vector<int> adj[N];
vector<int> labels;
int n, k;
int timer;
void dfs2(int node, int par)
{
timer++;
in[node] = timer;
for (int next : adj[node])
{
if (next == par) continue;
dfs2(next, node);
}
out[node] = timer;
}
array<int, 2> getInAndOut(int num)
{
int cur = 0;
for (int i = 0; i < 1000; i++)
{
if (cur + 1000 - i < num)
{
cur += 1000 - i;
continue;
}
for (int j = i; j < 1000; j++)
{
if (cur == num)
{
return {i, j};
}
cur++;
}
}
}
int getLabel(int nin, int nout)
{
int cur = 0;
for (int i = 0; i < 1000; i++)
{
if (i < nin)
{
cur += (1000 - i);
continue;
}
for (int j = i; j < 1000; j++)
{
if (i == nin && j == nout)
{
return cur;
}
cur++;
}
}
return -1;
}
std::vector<int> label(int n1, int k1, std::vector<int> u, std::vector<int> v) {
n = n1;
k = k1;
labels.assign(n, 0);
for (int i = 0; i < n; i++) adj[i].clear();
for (int i = 0; i < u.size(); i++)
{
adj[u[i]].push_back(v[i]);
adj[v[i]].push_back(u[i]);
}
timer = -1;
dfs2(0, -1);
for (int i = 0; i < n; i++) {
labels[i] = getLabel(in[i], out[i]);
}
return labels;
}
int find_next_station(int s, int t, std::vector<int> c) {
int sIn = getInAndOut(s)[0];
int sOut = getInAndOut(s)[1];
int tIn = getInAndOut(t)[0];
int tOut = getInAndOut(t)[1];
if (sIn <= tIn && tOut <= sOut)
{
for (int next : c)
{
int nextIn = getInAndOut(next)[0];
int nextOut = getInAndOut(next)[1];
if (!(nextIn <= sIn && sOut <= nextOut) && (nextIn <= tIn && tOut <= nextOut)) return next;
}
} else
{
for (int next : c)
{
int nextIn = getInAndOut(next)[0];
int nextOut = getInAndOut(next)[1];
if (nextIn <= sIn && sOut <= nextOut) return next;
}
}
return c[0];
}
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... |