Submission #647184

# Submission time Handle Problem Language Result Execution time Memory
647184 2022-10-01T20:34:56 Z Alenygam Zalmoxis (BOI18_zalmoxis) C++14
0 / 100
147 ms 104908 KB
#include <bits/stdc++.h>

using namespace std;

struct btNode {
	int8_t value;
	btNode *left = nullptr;
	btNode *right = nullptr;
};

btNode preallocBt[1000000];
int lastNodeBt = 0;
inline btNode* get_new_btNode() {
	return &preallocBt[lastNodeBt++];
}

struct linkedListNode {
	int8_t val;
	linkedListNode *next = nullptr;
	bool inserted = false;
};

linkedListNode preallocLinked[1000000];
int lastNodeLnkd = 0;
static linkedListNode* get_new_lnkd_node() {
	return &preallocLinked[lastNodeLnkd++];
}

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(0);

	int N, K;
	cin >> N >> K;
	vector<int> values(N);
	for (auto &i: values) cin >> i;

	btNode root = btNode{30, 0, 0};

	linkedListNode *head = get_new_lnkd_node();
	linkedListNode *tail = head;

	stack<btNode*> stck;
	stck.push(&root);

	for (int i = 0; i < N; i++) {
		while (values[i] > stck.top()->value || (stck.top()->left != nullptr && stck.top()->right != nullptr)) {
			btNode *top = stck.top();
			if (top->right == nullptr && top->value != 0) {
				tail->next = get_new_lnkd_node();
				tail = tail->next;
				tail->val = top->value - 1;
				if (top->value == 1) tail->inserted = false;
				else tail->inserted = true;
			}
			stck.pop();
		}

		tail->next = get_new_lnkd_node();
		tail = tail->next;
		tail->val = values[i];
		tail->inserted = false;

		while (stck.top()->value != values[i]) {
			btNode *top = stck.top();
			if (top->left != nullptr) {
				// I have to go right (left completely explored)
				top->right = get_new_btNode();
				top->right->value = top->value - 1;
				stck.push(top->right);
			} else {
				// I can go left
				top->left = get_new_btNode();
				top->left->value = top->value - 1;
				stck.push(top->left);
			}
		}
		stck.pop(); // node is == values[i], algorithm would never run next while loop

		while (stck.size() > 1 && stck.top()->left != nullptr && stck.top()->right != nullptr) {
			btNode *top = stck.top();
			if (top->right == nullptr && top->value != 0) {
				tail->next = get_new_lnkd_node();
				tail = tail->next;
				tail->val = top->value - 1;
				if (top->value == 1) tail->inserted = false;
				else tail->inserted = true;
			}
			stck.pop();
		}
		// maybe this works idk
	}

	while (!stck.empty()) {
		btNode *top = stck.top();
		if (top->right == nullptr && top->value != 0) {
			tail->next = get_new_lnkd_node();
			tail = tail->next;
			tail->val = top->value - 1;
			if (top->value == 1) tail->inserted = false;
			else tail->inserted = true;
		}
		stck.pop();
	}

	head = head->next;
	while (head != nullptr) {
		cout << (int)head->val << ' ';
		head = head->next;
	}
}
# Verdict Execution time Memory Grader output
1 Runtime error 126 ms 104880 KB Execution killed with signal 11
2 Runtime error 126 ms 104832 KB Execution killed with signal 11
3 Runtime error 130 ms 104880 KB Execution killed with signal 11
4 Runtime error 129 ms 104848 KB Execution killed with signal 11
5 Runtime error 134 ms 104908 KB Execution killed with signal 11
6 Runtime error 147 ms 104832 KB Execution killed with signal 11
# Verdict Execution time Memory Grader output
1 Runtime error 131 ms 104880 KB Execution killed with signal 11
2 Runtime error 133 ms 104860 KB Execution killed with signal 11
3 Runtime error 137 ms 104876 KB Execution killed with signal 11
4 Runtime error 146 ms 104884 KB Execution killed with signal 11
5 Runtime error 138 ms 104888 KB Execution killed with signal 11
6 Runtime error 124 ms 104832 KB Execution killed with signal 11
7 Runtime error 132 ms 104896 KB Execution killed with signal 11
8 Runtime error 147 ms 104908 KB Execution killed with signal 11
9 Runtime error 112 ms 101972 KB Execution killed with signal 11
10 Incorrect 65 ms 49168 KB Unexpected end of file - int32 expected
11 Incorrect 95 ms 50392 KB Unexpected end of file - int32 expected
12 Incorrect 20 ms 47188 KB Unexpected end of file - int32 expected
13 Incorrect 17 ms 47188 KB Unexpected end of file - int32 expected
14 Incorrect 19 ms 47188 KB Unexpected end of file - int32 expected