이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Joi.h"
#include<bits/stdc++.h>
#define ll long long
#define pll pair<ll, ll>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ld long double
using namespace std;
void Joi(int n, int m, int u[], int v[], ll x, int t)
{
vector <vector <ll>> A(n);
for (ll i=0; i<n; i++)
A[u[i]].pb(v[i]), A[v[i]].pb(u[i]);
vector <ll> tin(n, -1); ll Time=0;
function <void(ll)> dfs=[&](ll u)
{
tin[u]=Time, Time=(Time+1)%60;
MessageBoard(u, (x>>tin[u])&1);
for (ll v:A[u])
if (tin[v]==-1)
dfs(v);
}; dfs(0);
}
#include "Ioi.h"
#include<bits/stdc++.h>
#define ll long long
#define pll pair<ll, ll>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ld long double
using namespace std;
ll Ioi(int n, int m, int u[], int v[], int p, int cr, int t)
{
vector <vector <ll>> A(n);
for (ll i=0; i<n; i++)
A[u[i]].pb(v[i]), A[v[i]].pb(u[i]);
ll Time=0, pos=0;
vector <pll> realedge;
vector <ll> order, tin(n, -1);
function <void(ll)> dfs=[&](ll u)
{
if (u==p) pos=order.size(); order.pb(u);
tin[u]=Time, Time=(Time+1)%60;
for (ll v:A[u])
if (tin[v]==-1)
realedge.pb({v, u}), dfs(v);
}; dfs(0);
for (ll i=0; i<n; i++) A[i].clear();
for (auto [u, v]:realedge) A[u].pb(v), A[v].pb(u);
pll best={1e9, 0};
for (ll i=pos; i>=0 && i>pos-60; i--)
{
if (i+60>n) continue;
vector <ll> mark(n, 0), dis(n, 0);
for (ll j=i; j<i+60; j++)
mark[order[j]]=1;
function <void(ll, ll)> dfs1=[&](ll u, ll pa)
{
for (ll v:A[u]) if (v!=pa)
{
dfs1(v, u), mark[u]|=mark[v];
if (mark[v]) dis[u]=max(dis[u], dis[v]+1);
}
}; dfs1(p, -1);
ll cnt=0, Max=0;
for (ll j=0; j<n; j++)
cnt+=mark[j], Max=max(Max, dis[j]);
best=min(best, {(cnt-1)*2-Max, i});
}
assert(best.fi<=120);
vector <ll> mark(n, 0), pa(n, -1), ism(n, 0);
vector <pll> dis(n, {0, -1});
for (ll j=best.se; j<best.se+60; j++)
mark[order[j]]=1;
function <void(ll)> dfs1=[&](ll u)
{
for (ll v:A[u]) if (v!=pa[u])
{
pa[v]=u, dfs1(v), mark[u]|=mark[v];
if (mark[v]) dis[u]=max(dis[u], {dis[v].fi+1, v});
}
}; dfs1(p);
ll Max=p; ism[Max]=1;
while (dis[Max].se!=-1)
Max=dis[Max].se, ism[Max]=1;
ll cnt=0, bit[60]={}; bit[tin[p]]=cr;
function <void(ll)> answer=[&](ll u)
{
for (ll i=0; i<A[u].size(); i++)
if (ism[A[u][i]])
{swap(A[u][i], A[u].back()); break;}
for (ll v:A[u])
if (mark[v] && v!=pa[u])
bit[tin[v]]=Move(v), cnt++, answer(v);
if (!ism[u]) bit[tin[pa[u]]]=Move(pa[u]), cnt++;
}; answer(p);
assert(cnt<=120);
ll ans=0;
for (ll i=0; i<60; i++)
if (bit[i]) ans|=1ll<<i;
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
Ioi.cpp: In lambda function:
Ioi.cpp:22:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
22 | if (u==p) pos=order.size(); order.pb(u);
| ^~
Ioi.cpp:22:37: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
22 | if (u==p) pos=order.size(); order.pb(u);
| ^~~~~
Ioi.cpp: In lambda function:
Ioi.cpp:69:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
69 | for (ll i=0; i<A[u].size(); i++)
| ~^~~~~~~~~~~~
# | 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... |