# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
21023 | model_code | City (JOI17_city) | C++11 | 598 ms | 57936 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Encoder.h"
#include <vector>
using namespace std;
const int kMaxN = 250000;
const int kMaxDepth = 18;
const double kRatio = 1.05;
static vector<int> graph[kMaxN];
static vector<int> widths;
static int lf[kMaxN], rg[kMaxN], last_id;
void SetWidths()
{
int w = 1;
widths.push_back((int)w);
int times = kMaxDepth + 1;
while (times > 0) {
int w2 = w * kRatio;
if (w == w2) ++w2;
widths.push_back(w2);
if (w2 > kMaxN) {
--times;
}
w = w2;
}
}
int ceiling(int w)
{
return *(lower_bound(widths.begin(), widths.end(), w));
}
void visit(int p, int rt)
{
lf[p] = last_id++;
for (int q : graph[p]) if (q != rt) {
visit(q, p);
}
rg[p] = last_id = lf[p] + ceiling(last_id - lf[p]);
}
void Encode(int N, int A[], int B[])
{
SetWidths();
for (int i = 0; i < N - 1; ++i) {
graph[A[i]].push_back(B[i]);
graph[B[i]].push_back(A[i]);
}
last_id = 0;
visit(0, -1);
for (int i = 0; i < N; ++i) {
int wc = lower_bound(widths.begin(), widths.end(), rg[i] - lf[i]) - widths.begin();
long long code = (long long)lf[i] * widths.size() + wc;
Code(i, code);
}
}
#include "Device.h"
#include <algorithm>
#include <vector>
#include <cstdio>
using namespace std;
const int kMaxN = 250000;
const int kMaxDepth = 18;
const double kRatio = 1.05;
static vector<int> widths;
void InitDevice()
{
int w = 1;
widths.push_back((int)w);
int times = kMaxDepth + 1;
while (times > 0) {
int w2 = w * kRatio;
if (w == w2) ++w2;
widths.push_back(w2);
if (w2 > kMaxN) {
--times;
}
w = w2;
}
}
pair<int, int> range(long long code)
{
int left = (int)(code / widths.size());
int w = widths[(int)(code % widths.size())];
return{ left, left + w };
}
int Answer(long long S, long long T)
{
pair<int, int> X = range(S), Y = range(T);
if (Y.first <= X.first && X.second <= Y.second) return 0;
if (X.first <= Y.first && Y.second <= X.second) return 1;
return 2;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |