This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
 
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define s second
#define f first
typedef long long ll;
const ll MOD = 998244353;
const ll LOGN = 20;
const ll MAXN = 3e5 + 5;
ll now = 1;
int N = 1;
vector<int> curr;
vector<pair<int,int>> edges;
void addEdge(int cnt) {
	vector<int> new_nodes;
	for (int i = N+1; i <= N+cnt; i++)
		new_nodes.push_back(i);
	N += cnt;
	for (auto from : curr) {
		for (auto to : new_nodes)
			edges.push_back({from, to});
	}
	curr = new_nodes;
}
void addNode() {
	N++;
	edges.push_back({1, N});
	curr.push_back(N);
	now--;
}
int main() {
	fast
	ll K;
	cin >> K;
	curr.push_back(1);
	for (ll i = 63; i >= 0; i--) {
		if ((1<<i) & K) {
			if (now > 0)
				addEdge(2);
			addNode();
			now = -1*abs(now) - 1;
			addEdge(2);
			addEdge(3);
			now = abs(now);
		} else {
			addEdge(3);
			addEdge(2);
			now = abs(now) * 2;
		}
	}
	if (now == -K)
		addEdge(2);
	cout << N << " " << edges.size() << "\n";
	for (auto u : edges)
		cout << u.f << " " << u.s << "\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... |