이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#include "doll.h"
using namespace std;
#ifdef DEBUGGING
#include "../debug.h"
#else
#define debug(x...) void(42)
#endif
vector<int> a;
vector<int> x, y;
int n, m;
void create_circuit(int M, vector<int> A)
{
a = A;
if (a.size() == (a.size()&(-a.size())))
a.pb(0);
n = a.size();
int step_count = (a.size()+1)>>1;
int i;
for (i = 0; i+step_count < a.size(); i++)
{
x.pb(a[i]);
y.pb(a[i+step_count]);
}
if (i < step_count)
{
x.pb(a[i]);
y.pb(0);
}
int l = 0, r = x.size();
debug(x, y);
int depth = 0;
while ((r-l) > 1)
{
depth++;
step_count = (r+1 - l)/2;
debug(step_count);
debug(l, r);
for (i = l; i+step_count < r; i++)
{
x.pb(-i-1);
y.pb(-i-step_count-1);
}
if (1&(r-l))
{
x.pb(-i-1);
y.pb(0);
}
l = r;
r = x.size();
}
debug(x, y, depth);
int oooo = -x.size();
for (int i = 0; i < x.size(); i++)
{
if (x[i] == 0)
x[i] = -x.size();
if (y[i] == 0)
y[i] = -y.size();
}
int last = -x.size();
i = x.size()-1;
int d = 0;
while (y[i] != -x.size())
{
d++;
i = -y[i]-1;
}
debug(i);
y[i] = -x.size()-1;
int lss = i;
while (d < depth)
{
int ss = x.size();
d++;
x.pb(last);
y.pb(-ss-2);
lss = y.size()-1;
}
y[lss] = 0;
vector<int> c(M+1, oooo);
debug(x, y);
debug(c, x, y);
answer(c, x, y);
}
컴파일 시 표준 에러 (stderr) 메시지
doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:26:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | for (i = 0; i+step_count < a.size(); i++)
| ~~~~~~~~~~~~~^~~~~~~~~~
doll.cpp:60:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
60 | for (int i = 0; i < x.size(); i++)
| ~~^~~~~~~~~~
doll.cpp:70:14: warning: comparison of integer expressions of different signedness: '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
70 | while (y[i] != -x.size())
# | 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... |