# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
978722 | vjudge1 | 길고양이 (JOI20_stray) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Anthony.h"
#include "Catherine.h"
#include <bits/stdc++.h>
using namespace std;
int n,m,AA,BB;
vector<int> g[20005];
vector<pair<int,int>> e;
vector<int> d;
void bfs()
{
d.resize(n);
for (int i = 0; i < n; i++)
d[i] = 1e9;
d[0] = 0;
queue<int> q;
q.push(0);
while (!q.empty())
{
int nod = q.front();
q.pop();
for (auto vecin : g[nod])
{
if (d[vecin] == 1e9)
{
d[vecin] = 1 + d[nod];
q.push(vecin);
}
}
}
}
vector<int> solve1()
{
bfs();
vector<int> ans(m);
for (int i = 0; i < e.size(); i++)
{
int x = e[i].first,y = e[i].second;
ans[i] = min(d[x],d[y]) % 3;
}
return ans;
}
vector<int> Mark(int N, int M, int A, int B, vector<int> U, vector<int> V)
{
n = N,m = M;
AA = A,BB = B;
for (int i = 0; i < m; i++)
{
g[U[i]].push_back(V[i]);
g[V[i]].push_back(U[i]);
e.push_back({U[i],V[i]});
}
if (A >= 3)
{
return solve1();
}
}
void Init(int A, int B)
{
int xxx = 123;
}
int Move(vector<int> y)
{
if (y[0] == 0 and y[1] == 0)
return 2;
if (y[1] == 0 and y[2] == 0)
return 0;
if (y[0] == 0 and y[2] == 0)
return 1;
if (y[2] == 0)
return 0;
if (y[0] == 0)
return 1;
return 2;
}