Submission #846487

# Submission time Handle Problem Language Result Execution time Memory
846487 2023-09-07T15:54:56 Z serifefedartar Konstrukcija (COCI20_konstrukcija) C++17
0 / 110
1 ms 348 KB
#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);
}

int main() {
	fast
	ll K;
	cin >> K;

	curr.push_back(1);
	for (ll i = 60; 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
1 Incorrect 1 ms 344 KB Wrong answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Integer parameter [name=M] equals to 1119, violates the range [0, 1000]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Wrong answer.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Wrong answer.
2 Halted 0 ms 0 KB -