Submission #551988

#TimeUsernameProblemLanguageResultExecution timeMemory
551988LucaDantasCity (JOI17_city)C++17
100 / 100
465 ms38132 KiB
#include "Encoder.h"
#include <bits/stdc++.h>
using namespace std;

constexpr int maxn = 1<<18;
constexpr double base = 1.05; // uso os intervalos em tamanho de potencias dessa base

vector<int> g[maxn];

static vector<int> val;

void set_val() {
	val.push_back(1);
	for(int i = 1; i < (1 << 8); i++) {
		int aq = val.back() * base;
		if(aq == val.back()) ++aq;
		val.push_back(aq);
	}
}

int find_pot(int x) { return lower_bound(val.begin(), val.end(), x) - val.begin(); }

int dfs(int u, int p, int in) {
	int out = in+1;
	for(int v : g[u]) if(v != p)
		out = dfs(v, u, out);
	int sz = out - in, d = find_pot(sz);
	Code(u, (in<<8)|d);
	return in + val[d];
}

void Encode(int N, int A[], int B[])
{
	set_val();
	for(int i = 0; i < N-1; i++)
		g[A[i]].push_back(B[i]), g[B[i]].push_back(A[i]);
	dfs(0, -1, 0);
}
#include "Device.h"
#include <bits/stdc++.h>
using namespace std;

constexpr double base = 1.05;

static vector<int> val;

void InitDevice() {
	val.push_back(1);
	for(int i = 1; i < (1 << 8); i++) {
		int aq = val.back() * base;
		if(aq == val.back()) ++aq;
		val.push_back(aq);
	}
}

int Answer(long long S, long long T)
{
	int in[2], out[2];
	for(int rep = 0; rep < 2; rep++, swap(S, T)) {
		in[rep] = S >> 8;
		out[rep] = in[rep] + val[S % (1<<8)] - 1;
	}
	int vira = 0;
	if(in[0] > in[1])
		swap(in[0], in[1]), swap(out[0], out[1]), vira = 1;
	return (out[0] >= in[1] ? 1^vira : 2);
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...