# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
319156 | alextodoran | Stations (IOI20_stations) | C++17 | 3060 ms | 2097156 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
____ ____ ____ ____ ____
||a |||t |||o |||d |||o ||
||__|||__|||__|||__|||__||
|/__\|/__\|/__\|/__\|/__\|
**/
#include <bits/stdc++.h>
#include "stations.h"
using namespace std;
const int N_MAX = 1002;
vector <int> edges[N_MAX];
int minLabel[N_MAX], maxLabel[N_MAX];
int curr;
int depth[N_MAX];
void dfs (int u, int parent = -1)
{
minLabel[u] = maxLabel[u] = curr++;
for(int v : edges[u])
if(v != parent)
{
depth[v] = depth[u] + 1;
dfs(v, u);
maxLabel[u] = max(maxLabel[u], maxLabel[v]);
}
}
vector <int> label (int n, int k, vector <int> u, vector <int> v)
{
for(int i = 1; i < n; i++)
{
int a = u[i - 1];
int b = v[i - 1];
edges[a].push_back(b);
edges[b].push_back(a);
}
dfs(1);
vector <int> labels(n);
for(int i = 1; i <= n; i++)
if(depth[i] & 1)
labels[i - 1] = minLabel[i];
else
labels[i - 1] = maxLabel[i];
return labels;
}
int find_next_station (int s, int t, vector <int> c)
{
bool odd = true;
for(int u : c)
odd &= (u < s);
int minL, maxL;
if(odd == true)
{
minL = s;
sort(c.begin(), c.end());
if((int)c.size() == 1)
maxL = minL;
else
maxL = c.end()[-2];
if(minL <= t && t <= maxL)
{
for(int u : c)
if(t <= u)
return u;
}
else
return c.back();
}
else
{
maxL = s;
sort(c.begin(), c.end());
reverse(c.begin(), c.end());
if((int)c.size() == 1)
minL = maxL;
else
minL = c.end()[-2] - 1;
if(minL <= t && t <= maxL)
{
for(int u : c)
if(u <= t)
return u;
}
else
return c.back();
}
}
컴파일 시 표준 에러 (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... |