이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define int int64_t
using namespace std;
constexpr static int MXLOG = 62;
int32_t main()
{
int k;
cin >> k;
int ccc = (k < 0) ? 1 : 0;
vector<int> v;
vector<array<int, 2>> e;
int nxt = 1;
for (int i = 1; i <= 3; i++)
e.pb({0, nxt++});
array<int, 3> last = {1, 2, 3};
if (ccc == 0)
{
e.pb({0, nxt});
v.pb(nxt++);
}
for (int i = 1; i < MXLOG; i++)
{
if (ccc == (i&1))
{
vector<int> vv;
for (int j = 0; j < 2; j++)
e.pb({last[j], nxt});
v.pb(nxt++);
for (int j = 0; j < 3; j++)
e.pb({last[j], nxt});
v.pb(nxt++);
}
for (int j = 0; j < 3; j++)
for (int l = 0; l < 3; l++)
e.pb({last[l], nxt+j});
for (int j = 0; j < 3; j++)
last[j] = nxt++;
}
for (int i = 0; i < 3; i++)
{
e.pb({nxt-1, nxt});
nxt++;
}
k = abs(k);
for (int i = 0; i < MXLOG; i++)
if (k&(static_cast<int>(1)<<i))
e.pb({v[i], nxt-1});
cout << nxt << " " << e.size() << "\n";
for (auto [a, b] : e)
cout << (a+1) << " " << (b+1) << "\n";
}
# | 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... |