답안 #867460

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
867460 2023-10-28T12:37:18 Z 42kangaroo Zalmoxis (BOI18_zalmoxis) C++17
35 / 100
120 ms 19576 KB
//
// Created by 42kangaroo on 28/10/2023.
//
#include "bits/stdc++.h"

using namespace std;

#define int long long

signed main() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, k; cin >> n >> k;
	vector<int> a(n);
	for (int i = 0; i < n; ++i) {
		cin >> a[i];
	}
	vector<pair<int,int>> addBef;
	stack<pair<int,int>> st;
	auto mergeBack= [&st](){
		while (st.size()> 1){
			auto t = st.top();
			st.pop();
			if (st.top().second == t.second) {
				st.top().second++;
			} else {
				st.push(t);
				break;
			}
		}
	};
	for (int i = 0; i < n; ++i) {
		while (!st.empty() && st.top().second < a[i]) {
			addBef.push_back(st.top());
			st.push({-1, st.top().second});
			mergeBack();
		}
		st.push({i, a[i]});
		mergeBack();
	}
	while (!st.empty() && st.top().second < 30) {
		addBef.push_back(st.top());
		st.push({-1, st.top().second});
		mergeBack();
	}
	vector<int> out;
	int addInd = 0;
	bool first = true;
	assert(!addBef.empty());
	std::sort(addBef.begin(), addBef.end());
	for (int i = 0; i < n; ++i) {
		vector<int> hasTo;
		while (addInd < addBef.size() && addBef[addInd].first == i) {
			hasTo.push_back(addBef[addInd].second);
			addInd++;
		}
		std::reverse(hasTo.begin(), hasTo.end());
		for (int q = 0; q < hasTo.size(); ++q) {
			if (first) {
				int ks = k - addBef.size() + 1;
				int p2 = 1;
				for (int j = 0; j <= 30; ++j, p2*= 2) {
					if (p2 >= ks) {
						for (int l = 0; l < ks; ++l) {
							if (l < p2 - ks - 1) out.push_back(hasTo[q] - j - 1);
							else out.push_back(hasTo[q] - j);
							assert(hasTo[q] - j - 1 >= 0);
						}
						break;
					}
				}
				first = false;
			} else {
				out.push_back(hasTo[q]);
			}
		}
		out.push_back(a[i]);
	}
	for (auto e: out) {
		cout << e << " ";
	}
}

Compilation message

zalmoxis.cpp: In function 'int main()':
zalmoxis.cpp:53:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   53 |   while (addInd < addBef.size() && addBef[addInd].first == i) {
      |          ~~~~~~~^~~~~~~~~~~~~~~
zalmoxis.cpp:58:21: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   58 |   for (int q = 0; q < hasTo.size(); ++q) {
      |                   ~~^~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 106 ms 18116 KB Output is correct
2 Correct 106 ms 18124 KB Output is correct
3 Correct 107 ms 18196 KB Output is correct
4 Correct 106 ms 18116 KB Output is correct
5 Correct 120 ms 18256 KB Output is correct
6 Correct 109 ms 18104 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 108 ms 18232 KB not a zalsequence
2 Correct 106 ms 18588 KB Output is correct
3 Runtime error 66 ms 16472 KB Execution killed with signal 6
4 Incorrect 110 ms 18344 KB not a zalsequence
5 Incorrect 110 ms 18620 KB not a zalsequence
6 Incorrect 106 ms 18120 KB not a zalsequence
7 Incorrect 108 ms 18340 KB not a zalsequence
8 Incorrect 108 ms 18620 KB not a zalsequence
9 Runtime error 67 ms 19576 KB Execution killed with signal 6
10 Incorrect 104 ms 15676 KB not a zalsequence
11 Runtime error 48 ms 15560 KB Execution killed with signal 6
12 Incorrect 48 ms 10244 KB not a zalsequence
13 Incorrect 48 ms 10164 KB not a zalsequence
14 Incorrect 62 ms 10376 KB not a zalsequence