# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
934023 | logangd | City (JOI17_city) | C++14 | 124 ms | 23328 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Encoder.h"
#include<iostream>
#include<vector>
using namespace std;
using ll=long long;
using vl=vector<ll>;
const int Mx = 250000;
ll t=0;
vl ad[Mx];
pair<ll,ll>dfs(ll u,ll p){
if(u!=0&&ad[u].size()==1){
ll p=t;
Code(u,(t<<18)+t);
t++;
return {t-1,t-1};
}
ll l=Mx,r=0;
for(auto i:ad[u]){
if(i!=p){
auto rt=dfs(i,u);
l=min(l,rt.first);
r=max(r,rt.second);
}
}
Code(u,(l<<18)+r);
return {l,r};
}
void Encode(int N, int A[], int B[]){
for(int i=0;i<N-1;i++)
ad[A[i]].push_back(B[i]),
ad[B[i]].push_back(A[i]);
dfs(0,-1);
}
#include "Device.h"
using ll=long long;
void InitDevice(){}
int Answer(long long S, long long T){
ll l1=S>>18,r1=S-(l1<<18);
ll l2=T>>18,r2=T-(l2<<18);
if(l2<=l1&&r1<=r2)return 0;
if(l1<=l2&&r2<=r1)return 1;
return 2;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |