# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
605565 | MohamedAliSaidane | 기지국 (IOI20_stations) | C++14 | 963 ms | 800 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<pii> vpi;
typedef vector<pll> vpl;
#define pb push_back
#define popb pop_back
#define all(x) (x).begin(),(x).end()
#define ff first
#define ss second
const int nax = 1001;
vi rep;
int cureul = -1;
vi adj[nax];
void dfs(int x, int p = -1)
{
rep[x]= ++cureul;
for(auto e: adj[x])
if(e != p)
dfs(e, x);
rep[x] += 1000 * cureul;
}
vi label(int n, int k, vi u, vi v)
{
for(int i = 0 ; i < n; i++)
adj[i].clear();
rep.assign(n , 0);
for(int i= 0; i < n - 1; i ++)
{
adj[u[i]].pb(v[i]);
adj[v[i]].pb(u[i]);
}
dfs(0);
return rep;
}
int find_next_station(int s, int t, vi c)
{
int tin = s%1000;
int tout = s/1000;
int innt = t%1000;
int outt = t/1000;
if(innt >= tin && innt <= tout)
{
for(auto e: c)
{
int u = e/1000;
int v = e%1000;
if(innt >= v && innt <= u && v > tin)
return e;
}
}
else
{
int mini = c[0];
for(auto e: c)
{
int u = e%1000;
if(u < mini%1000)
mini = u;
}
return mini;
}
}
컴파일 시 표준 에러 (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... |