This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "Anthony.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> ant1()
{
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> ant2()
{
}
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 ant1();
else
return ant2();
}
#include "Catherine.h"
#include <bits/stdc++.h>
using namespace std;
int A1,B1;
void Init(int A, int B)
{
A1 = A;
B1 = B;
}
int cat1(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;
}
int cat2(vector<int> y)
{
}
int Move(vector<int> y)
{
if (A1 >= 3)
return cat1(y);
else
return cat2(y);
}
Compilation message (stderr)
Anthony.cpp: In function 'std::vector<int> ant1()':
Anthony.cpp:38:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | for (int i = 0; i < e.size(); i++)
| ~~^~~~~~~~~~
Anthony.cpp: In function 'std::vector<int> ant2()':
Anthony.cpp:49:1: warning: no return statement in function returning non-void [-Wreturn-type]
49 | }
| ^
Catherine.cpp: In function 'int cat2(std::vector<int>)':
Catherine.cpp:32:1: warning: no return statement in function returning non-void [-Wreturn-type]
32 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |