# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1008992 | salmon | City (JOI17_city) | C++14 | 223 ms | 41040 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Encoder.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> adjlst[250100];
long long int pre[250100];
long long int post[250100];
int cont = 0;
void dfs(int i, int p){
pre[i] = cont;
cont++;
for(int j : adjlst[i]){
if(j == p) continue;
dfs(j,i);
}
post[i] = cont - 1;
}
void Encode(int N, int A[], int B[]){
for(int i = 0; i < N; ++i) {
adjlst[A[i]].push_back(B[i]);
adjlst[B[i]].push_back(A[i]);
}
dfs(0,-1);
for(int i = 0; i < N; i++){
Code(i,(pre[i]<<18)+post[i]);
}
}
#include "Device.h"
void InitDevice(){
}
int Answer(long long S, long long T){
int e1 = S % (1<<18);
int s1 = (S>>18);
int e2 = T % (1<<18);
int s2 = (T>>18);
if(s1 <= s2 && e2 <= e1){
return 1;
}
if(s2 <= s1 && e1 <= e2){
return 0;
}
return 2;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |