이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a && (a = b, true); }
template<class T> bool chmax(T &a, T b) { return a < b && (a = b, true); }
#undef KEV
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T l, T r) { while (l != r) cerr << *l << " \n"[next(l)==r], ++l; }
#else
#define DE(...) 0
#define debug(...) 0
#endif
const int MAX_N = 300010, inf = 1e9;
#include "doll.h"
void create_circuit(int M, std::vector<int> A) {
int n = A.size(), m = M;
// C is the place where the ith trigger connect to
vector<int> C(M + 1), X, Y;
auto new_s = [&]() {
int ret = X.size();
X.pb(0), Y.pb(0);
return ret;
};
auto sid = [&](int id) { return - (id+1); };
DE(n, M);
int P = inf;
function<vector<int>(vector<int>)> solve = [&](vector<int> target) {
int osz = 2, sz = target.size();
while (osz < sz) osz <<= 1;
int more = osz - sz;
vector<int> allid(osz); iota(AI(allid), 0);
vector<int> val(osz);
vector<int> ban(osz);
function<void(int,vector<int>)> gen = [&](int more, vector<int> allid) {
if (more == 0) return ;
if (more == allid.size()) {
for (int u : allid) ban[u] = true, val[u] = P;
return;
}
vector<int> L, R;
for (int i = 0;i < allid.size();++i) {
(i&1?R:L).pb(allid[i]);
}
int sz = L.size(), lm = min(more, sz), rm = more - lm;
assert(L.size() == R.size());
if (count(AI(L), osz-1)) swap(lm, rm);
DE(lm, rm);
gen(lm, L), gen(rm, R);
};
gen(more, allid);
for (int i = 0, j = 0;i < sz;++i) {
while (ban[j]) ++j;
val[j++] = target[i];
if (i == sz-1) assert(j == osz);
}
return val;
};
function<int(vector<int>)> create = [&](vector<int> target) {
if (target.size() == 1) {
return target[0];
}
assert(target.size() % 2 == 0);
if (count(AI(target), target[0]) == target.size()) {
return target[0];
}
int cur = new_s();
vector<int> L, R;
for (int i = 0;i < target.size();++i) {
(i&1?R:L).pb(target[i]);
}
assert(L.size() == R.size());
int a = create(L), b = create(R);
X[cur] = a, Y[cur] = b;
return sid(cur);
};
auto spgen = [&](vector<int> target) {
if (target.size() == 1) return target[0];
int old = X.size();
target = solve(target);
int g = create(target);
for (int i = old;i < X.size();++i) {
if (X[i] == P) X[i] = g;
if (Y[i] == P) Y[i] = g;
}
return g;
};
C[0] = A[0];
A.pb(0);
C[ A[0] ] = spgen(vector<int>(begin(A)+1, end(A)));
for (int i = 1;i <= m;++i) C[i] = C[A[0]];
answer(C, X, Y);
}
컴파일 시 표준 에러 (stderr) 메시지
doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:17:17: warning: statement has no effect [-Wunused-value]
17 | #define DE(...) 0
| ^
doll.cpp:38:2: note: in expansion of macro 'DE'
38 | DE(n, M);
| ^~
doll.cpp: In lambda function:
doll.cpp:54:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
54 | if (more == allid.size()) {
| ~~~~~^~~~~~~~~~~~~~~
doll.cpp:60:21: 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 < allid.size();++i) {
| ~~^~~~~~~~~~~~~~
doll.cpp:17:17: warning: statement has no effect [-Wunused-value]
17 | #define DE(...) 0
| ^
doll.cpp:69:4: note: in expansion of macro 'DE'
69 | DE(lm, rm);
| ^~
doll.cpp: In lambda function:
doll.cpp:90:36: warning: comparison of integer expressions of different signedness: 'std::__iterator_traits<__gnu_cxx::__normal_iterator<int*, std::vector<int> >, void>::difference_type' {aka 'long int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
90 | if (count(AI(target), target[0]) == target.size()) {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
doll.cpp:95:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
95 | for (int i = 0;i < target.size();++i) {
| ~~^~~~~~~~~~~~~~~
doll.cpp: In lambda function:
doll.cpp:109:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
109 | for (int i = old;i < X.size();++i) {
| ~~^~~~~~~~~~
doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:25:6: warning: unused variable 'n' [-Wunused-variable]
25 | int n = A.size(), m = M;
| ^
# | 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... |