# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
427077 | tqbfjotld | City (JOI17_city) | C++14 | 849 ms | 60352 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Encoder.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> chlist[500005];
int curnodes,n;
vector<int> adjl[250005];
const int numch = 3;
long long expp[250005];
int func(int node, int pa){
set<pair<int,int> > stuff;
for (auto x : adjl[node]){
if (x==pa) continue;
int res = func(x,node);
stuff.insert({res,x});
}
while (stuff.size()>numch){
int nw = curnodes++;
int mxv = -1;
for (int x = 0; x<numch; x++){
auto i = *stuff.begin();
stuff.erase(stuff.begin());
chlist[nw].push_back(i.second);
mxv = i.first;
}
stuff.insert({mxv+1,nw});
}
int mxv = -1;
for (auto x : stuff){
mxv = x.first;
chlist[node].push_back(x.second);
}
return mxv+1;
}
void dfs2(int node, long long curamt, int pos){
//printf("ch of %d = %d %d\n",node,lch[node],rch[node]);
if (node<n){
// printf("code %d %lld\n",node,curamt+(1LL<<pos));
Code(node,curamt+expp[pos]-1LL);
}
for (long long x = 0; x<chlist[node].size(); x++){
dfs2(chlist[node][x],curamt+x*expp[pos],pos+1);
}
}
void Encode(int N, int A[], int B[])
{
n = N;
expp[0] = 1;
for (int x = 1; x<64; x++){
expp[x] = expp[x-1]*numch;
}
curnodes = N;
for (int x = 0; x<N-1; x++){
adjl[A[x]].push_back(B[x]);
adjl[B[x]].push_back(A[x]);
}
func(0,-1);
dfs2(0,0,0);
}
#include "Device.h"
#include <bits/stdc++.h>
using namespace std;
const int numch = 3;
void InitDevice()
{
}
int Answer(long long S, long long T)
{
S++; T++;
string s1,s2;
for (int x = 0; x<64; x++){
if (S){
s1.push_back('0'+S%numch);
}
S/=numch;
if (T){
s2.push_back('0'+T%numch);
}
T/=numch;
}
s1.pop_back();
s2.pop_back();
//printf("cmp %s %s\n",s1.c_str(),s2.c_str());
if (s1.size()<s2.size()){
for (int x = 0; x<s1.size(); x++){
if (s1[x]!=s2[x]) return 2;
}
return 1;
}
for (int x = 0; x<s2.size(); x++){
if (s1[x]!=s2[x]) return 2;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |