Submission #586104

# Submission time Handle Problem Language Result Execution time Memory
586104 2022-06-29T21:29:59 Z AlperenT Zalmoxis (BOI18_zalmoxis) C++17
35 / 100
249 ms 167700 KB
#include <bits/stdc++.h>

using namespace std;

const int N = 1e6;

int n, k, arr[N];

vector<int> nums[N];

vector<pair<int, int>> v, vnext;

vector<int> vec, ans;

bool isneeded[N];

int main(){
	ios_base::sync_with_stdio(false);cin.tie(NULL);
	
	cin >> n >> k;

	for(int i = 0; i < n; i++){
		cin >> arr[i];

		nums[i].push_back(arr[i]);

		v.push_back({arr[i], i});
	}

	for(int cur = 0; cur <= 29; cur++){
		reverse(v.begin(), v.end());

		while(!v.empty()){
			pair<int, int> p = v.back(); v.pop_back();

			if(p.first != cur) vnext.push_back(p);
			else{
				if(!v.empty() && v.back().first == cur){
					vnext.push_back({cur + 1, v.back().second});
					v.pop_back();
				}
				else{
					nums[p.second].push_back(cur);
					vnext.push_back({cur + 1, p.second});
				}
			}
		}

		swap(v, vnext);
		vnext.clear();
	}

	for(int i = 0; i < n; i++){
		for(auto x : nums[i]) vec.push_back(x);

		assert(vec.size() <= N);
	}

	int ptr = 0;

	for(int i = 0; i < vec.size(); i++){
		if(ptr < n && vec[ptr] == arr[i]) isneeded[i] = true, ptr++;
	}

	assert(ptr == n);

	for(int i = 0; i < vec.size(); i++){
		if(isneeded[i]) ans.push_back(vec[i]);
		else{
			vector<int> stk;

			stk.push_back(vec[i]);

			while(!stk.empty() && ans.size() + (vec.size() - i - 1) + stk.size() < n + k){
				int cur = stk.back(); stk.pop_back();

				if(cur == 0) ans.push_back(0);
				else stk.push_back(cur - 1), stk.push_back(cur - 1);
			}

			while(!stk.empty()){
				ans.push_back(stk.back());
				stk.pop_back();
			}
		}
	}

	assert(ans.size() == n + k || ans.size() == n + k - 1);

	// cout << ans.size() << "\n";

	for(auto x : ans) cout << x << " ";
	cout << "\n";
}

Compilation message

zalmoxis.cpp: In function 'int main()':
zalmoxis.cpp:61:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   61 |  for(int i = 0; i < vec.size(); i++){
      |                 ~~^~~~~~~~~~~~
zalmoxis.cpp:67:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   67 |  for(int i = 0; i < vec.size(); i++){
      |                 ~~^~~~~~~~~~~~
zalmoxis.cpp:74:73: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   74 |    while(!stk.empty() && ans.size() + (vec.size() - i - 1) + stk.size() < n + k){
      |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
In file included from /usr/include/c++/10/cassert:44,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
                 from zalmoxis.cpp:1:
zalmoxis.cpp:88:20: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   88 |  assert(ans.size() == n + k || ans.size() == n + k - 1);
      |         ~~~~~~~~~~~^~~~~~~~
zalmoxis.cpp:88:43: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   88 |  assert(ans.size() == n + k || ans.size() == n + k - 1);
      |                                ~~~~~~~~~~~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 219 ms 89072 KB Output is correct
2 Correct 220 ms 89108 KB Output is correct
3 Correct 230 ms 88980 KB Output is correct
4 Correct 217 ms 89076 KB Output is correct
5 Correct 239 ms 89112 KB Output is correct
6 Correct 214 ms 88944 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 217 ms 166248 KB Execution killed with signal 6
2 Runtime error 228 ms 166796 KB Execution killed with signal 6
3 Runtime error 216 ms 166316 KB Execution killed with signal 6
4 Runtime error 213 ms 167700 KB Execution killed with signal 6
5 Runtime error 238 ms 167400 KB Execution killed with signal 6
6 Runtime error 214 ms 166812 KB Execution killed with signal 6
7 Runtime error 241 ms 166548 KB Execution killed with signal 6
8 Runtime error 249 ms 167676 KB Execution killed with signal 6
9 Runtime error 207 ms 146484 KB Execution killed with signal 6
10 Runtime error 112 ms 86832 KB Execution killed with signal 6
11 Runtime error 156 ms 105128 KB Execution killed with signal 6
12 Runtime error 33 ms 48104 KB Execution killed with signal 6
13 Runtime error 31 ms 48032 KB Execution killed with signal 6
14 Correct 92 ms 29804 KB Output is correct