# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1008909 | emptypringlescan | City (JOI17_city) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#include "Encoder.h"
vector<int> adj[250005];
long long pre[250005],pos[250005];
int cur=0;
void dfs(int x, int p){
cur++;
pre[x]=cur;
for(int i:adj[x]){
if(i!=p) dfs(i,x);
}
pos[x]=cur;
}
void Encode(int n, int u[], int v[]){
for(int i=0; i<n-1; i++){
adj[u[i]].push_back(v[i]);
adj[v[i]].push_back(u[i]);
}
dfs(0);
for(int i=0; i<n; i++){
Code(i,pre[i]<<18ll|pos[i]);
}
}
#include <bits/stdc++.h>
using namespace std;
#include "Device.h"
void InitDevice(){
}
int Answer(long long a, long long B){
long long prea=a>>18ll,posa=a^(prea<<18ll);
long long preb=b>>18ll,posb=b^(preb<<18ll);
if(preb<=prea&&posa<=posb) return 0;
else if(prea<=preb&&posb<=posa) return 1;
return 2;
}