# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
680850 | aryan12 | 기지국 (IOI20_stations) | C++17 | 932 ms | 804 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "stations.h"
#include <vector>
#include <bits/stdc++.h>
using namespace std;
const int N = 1001;
int tin[N], tout[N], depth[N];
int tim = -1;
vector<int> g[N];
void dfs(int node, int par)
{
tin[node] = (depth[node] % 2 == 1) ? ++tim : tim;
for(int to: g[node])
{
if(to == par) continue;
depth[to] = depth[node] + 1;
dfs(to, node);
}
tout[node] = (depth[node] % 2 == 0) ? ++tim : tim;
}
vector<int> label(int n, int k, vector<int> u, vector<int> v) {
tim = -1;
for(int i = 0; i < N; i++)
{
g[i].clear();
}
for(int i = 0; i < u.size(); i++)
{
g[u[i]].push_back(v[i]);
g[v[i]].push_back(u[i]);
}
depth[0] = 1;
dfs(0, -1);
vector<int> labels;
// cout << "in label\n";
for(int i = 0; i < n; i++)
{
// cout << tin[i] << " " << tout[i] << "\n";
// cout << "label assigned: " << tout[i] * 1000 + tin[i] << "\n";
if(depth[i] % 2 == 1)
{
labels.push_back(tin[i]);
}
else
{
labels.push_back(tout[i]);
}
}
return labels;
}
int find_next_station(int s, int t, std::vector<int> c) {
if(c[0] > s)
{
// currently in depth[i] % 2 == 0
int starting = s + 1;
for(int i = 0; i < c.size() - 1; i++)
{
if(starting <= t && t <= c[i])
{
return c[i];
}
starting = c[i] + 1;
}
return c[c.size() - 1];
}
else
{
// currently in depth[i] % 2 == 1
int ending = s;
for(int i = c.size() - 1; i > 0; i--)
{
if(c[i] <= t && t <= ending)
{
return c[i];
}
ending = c[i] - 1;
}
return c[0];
}
}
컴파일 시 표준 에러 (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... |