Submission #586088

# Submission time Handle Problem Language Result Execution time Memory
586088 2022-06-29T20:26:27 Z AlperenT Zalmoxis (BOI18_zalmoxis) C++17
5 / 100
391 ms 184896 KB
#include <bits/stdc++.h>

using namespace std;

const int N = 1e6 + 5;

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 = 1; 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);
	}

	int ptr = 0;

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

	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 == 1) ans.push_back(1);
				else stk.push_back(cur - 1), stk.push_back(cur - 1);
			}

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

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

Compilation message

zalmoxis.cpp: In function 'int main()':
zalmoxis.cpp:59:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   59 |  for(int i = 0; i < vec.size(); i++){
      |                 ~~^~~~~~~~~~~~
zalmoxis.cpp:63:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   63 |  for(int i = 0; i < vec.size(); i++){
      |                 ~~^~~~~~~~~~~~
zalmoxis.cpp:70:73: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   70 |    while(!stk.empty() && ans.size() + (vec.size() - i - 1) + stk.size() < n + k){
      |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 355 ms 181924 KB Execution killed with signal 11
2 Runtime error 344 ms 177840 KB Execution killed with signal 11
3 Runtime error 346 ms 180228 KB Execution killed with signal 11
4 Runtime error 366 ms 179668 KB Execution killed with signal 11
5 Runtime error 360 ms 178988 KB Execution killed with signal 11
6 Runtime error 391 ms 184896 KB Execution killed with signal 11
# Verdict Execution time Memory Grader output
1 Runtime error 351 ms 181136 KB Execution killed with signal 11
2 Runtime error 376 ms 184144 KB Execution killed with signal 11
3 Runtime error 344 ms 178020 KB Execution killed with signal 11
4 Runtime error 343 ms 178260 KB Execution killed with signal 11
5 Runtime error 337 ms 179312 KB Execution killed with signal 11
6 Runtime error 360 ms 181400 KB Execution killed with signal 11
7 Runtime error 345 ms 178880 KB Execution killed with signal 11
8 Runtime error 346 ms 176376 KB Execution killed with signal 11
9 Runtime error 304 ms 157016 KB Execution killed with signal 11
10 Incorrect 209 ms 51572 KB doesn't contain S as a subsequence
11 Runtime error 260 ms 121020 KB Execution killed with signal 11
12 Incorrect 87 ms 29740 KB doesn't contain S as a subsequence
13 Incorrect 86 ms 29784 KB doesn't contain S as a subsequence
14 Correct 92 ms 29824 KB Output is correct