이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define double long double
const bool MULTI_TEST = false;
//const intl mod = 1e9 + 7, maxn = 400002, maxm = 2e5 + 1;
using namespace std;
struct graf {
int n;
vector<pair<int, int>> edg;
vector<int> back_l;
graf(int _n, vector<pair<int, int>> edg_) {
n = _n;
edg = edg_;
}
graf() {
n = 1;
back_l.push_back(1);
}
ll mylt_min_2(ll pref) {
vector<int> new_ = {n + 1, n + 2, n + 3};
for(auto x : back_l)
for(auto y : new_)
edg.push_back({x, y});
back_l = new_;
n = n + 3;
return -2 * pref;
}
ll min_1(ll pref) {
edg.push_back({1, n + 1});
back_l.push_back(n + 1);
n = n + 1;
return pref - 1;
}
ll mylt_min_1(ll pref) {
vector<int> novi = {n + 1, n + 2};
for(auto x : back_l)
for(auto y : novi)
edg.push_back({x, y});
edg.push_back({1, n + 3});
novi.push_back(n + 3);
back_l = novi;
n = n + 3;
return -pref - 1;
}
void fun() {
vector<int> novi = {n + 1, n + 2};
for(auto x : back_l)
for(auto y : novi)
edg.push_back({x, y});
back_l = novi;
for(auto x : back_l)
edg.push_back({x, n + 3});
n = n + 3;
}
void minus() {
for(auto x : back_l)
edg.push_back({x, n + 1});
n = n + 1;
}
void print() {
cout << n << ' ' << edg.size() << "\n";
for(auto p : edg)
cout << p.first << ' ' << p.second << "\n";
}
};
void solve() {
ll k;
cin >> k;
ll k_ = k;
if(k == 0) {
graf g(3, {{1, 2}, {2, 3}});
g.print();
return;
}
graf g;
vector<int> binary;
while(k_ > 0) {
if(k_ & 1) binary.push_back(1);
else binary.push_back(0);
k_ /= 2;
}
reverse(binary.begin(), binary.end());
ll pref = 1;
for(int i = 1; i < (int) binary.size(); i++) {
pref = g.mylt_min_2(pref);
if(binary[i]) {
if(pref < 0)
pref = g.mylt_min_1(pref);
else
pref = g.min_1(pref);
}
}
assert(abs(k) == abs(pref));
if(pref == k) g.fun();
else g.minus();
g.print();
}
signed main() {
//#ifdef _DEBUG
//freopen("qual.in", "r", stdin);freopen("qual.out", "w", stdout);
//#endif
//
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
if (MULTI_TEST) {
std::cin >> t;
}
for (int i = 0; i < t; i++) {
solve();
}
return 0;
}
# | 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... |