# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
113631 | popovicirobert | City (JOI17_city) | C++14 | 523 ms | 57376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Encoder.h"
#include <bits/stdc++.h>
#define ll long long
using namespace std;
static vector < vector <int> > g;
static vector <int> idl, idr;
void dfs(int nod, int par, int &sz) {
idl[nod] = ++sz;
for(auto it : g[nod]) {
if(it != par) {
dfs(it, nod, sz);
}
}
idr[nod] = sz;
}
void Encode(int n, int A[], int B[]) {
g.resize(n);
int i;
for(i = 0; i < n - 1; i++) {
g[A[i]].push_back(B[i]);
g[B[i]].push_back(A[i]);
}
idl.resize(n), idr.resize(n);
int sz = 0;
dfs(0, -1, sz);
//vector <int> aux;
/*for(i = 0; i < n; i++) {
aux.push_back(idr[i] - idl[i]);
}*/
//sort(aux.begin(), aux.end());
//aux.resize(unique(aux.begin(), aux.end()) - aux.begin());
for(i = 0; i < n; i++) {
ll a = idl[i], b = idr[i] - idl[i];
Code(i, (b << 18) + a);
}
}
#include "Device.h"
#include <bits/stdc++.h>
#define ll long long
using namespace std;
void InitDevice()
{
}
int Answer(long long S, long long T)
{
ll ls = (S & ((1 << 18) - 1)), rs = ((S - ls) >> 18) + ls;
ll lt = (T & ((1 << 18) - 1)), rt = ((T - lt) >> 18) + lt;
if(ls <= lt && rt <= rs) {
return 1;
}
if(lt <= ls && rs <= rt) {
return 0;
}
return 2;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |