# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
936182 | nguyentunglam | City (JOI17_city) | C++17 | 129 ms | 39764 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Encoder.h"
#include <bits/stdc++.h>
#include <bits/stdc++.h>
using namespace std;
namespace {
const int NN = 3e5 + 10;
vector<int> adj[NN];
bool vis[NN];
int cnt = -1;
}
void dfs(int u, int p) {
vis[u] = 1;
int st = ++cnt;
for(int &v : adj[u]) if (v != p) dfs(v, u);
int diff = 1, deg = 0;
while (diff < cnt - st) diff *= 2, deg++;
cnt = st + diff;
long long code = st * 19 + deg;
// cout << st << " " << cnt << " " << deg << " " << u << endl;
assert(code < (1 << 27));
Code(u, code);
}
void Encode(int N, int A[], int B[])
{
for(int i = 0; i < N - 1; i++) {
adj[A[i]].push_back(B[i]);
adj[B[i]].push_back(A[i]);
}
for(int i = 0; i < N; i++) if (!vis[i]) dfs(i, i);
}
#include "Device.h"
#include<bits/stdc++.h>
using namespace std;
void InitDevice()
{
}
int Answer(long long S, long long T)
{
long long st_x = S / 19;
long long ed_x = st_x + (1 << (S % 19));
long long st_y = T / 19;
long long ed_y = st_y + (1 << (T % 19));
// cout << st_x << " " << ed_x << endl;
// cout << st_y << " " << ed_y << endl;
if (st_x <= st_y && st_y <= ed_x) return 1;
if (st_y <= st_x && st_x <= ed_y) return 0;
return 2;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |