# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
567779 | jamezzz | Flights (JOI22_flights) | C++17 | 71 ms | 1784 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Ali.h"
#include <string>
#include <vector>
#include <bits/stdc++.h>
using namespace std;
namespace {
int nn;
int dist[10005];
vector<int> AL[10005];
void dfs(int u){
for(int v:AL[u]){
if(dist[v]!=-1)continue;
dist[v]=dist[u]+1;
dfs(v);
}
}
}
void Init(int N, vector<int> U, vector<int> V){
nn=N;
for(int i=0;i<N;++i){
AL[i].clear();
}
memset(dist,-1,sizeof dist);
for(int i=0;i<N-1;++i){
AL[U[i]].push_back(V[i]);
AL[V[i]].push_back(U[i]);
}
for(int i=0;i<N;++i)SetID(i,i);
}
string SendA(string S){
int X=0,Y=0;
for(int i=0;i<14;++i){
if(S[i]=='1')X+=(1<<i);
}
for(int i=0;i<6;++i){
if(S[i+14]=='1')Y+=(1<<i);
}
dist[X]=0;dfs(X);
string ret;
for(int i=0;i<=nn/64;++i){
int u=64*i+Y;
for(int i=0;i<14;++i){
if((dist[u]&(1<<i))!=0)ret+='1';
else ret+='0';
}
}
return ret;
}
#include "Benjamin.h"
#include <string>
#include <vector>
#include <bits/stdc++.h>
using namespace std;
namespace {
int yy;
}
string SendB(int N, int X, int Y){
yy=Y;
string s;
for(int i=0;i<14;++i){
if((X&(1<<i))!=0)s+='1';
else s+='0';
}
for(int i=0;i<6;++i){
if((Y&(1<<i))!=0)s+='1';
else s+='0';
}
return s;
}
int Answer(string T){
yy/=64;
int ans=0;
for(int i=yy*14;i<(yy+1)*14;++i){
if(T[i]=='1')ans+=(1<<(i-yy*14));
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |