Submission #64776

# Submission time Handle Problem Language Result Execution time Memory
64776 2018-08-05T15:26:37 Z Good Zalmoxis (BOI18_zalmoxis) C++11
30 / 100
405 ms 36760 KB
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>

#define ff first
#define ss second
#define Maxn 1000003
#define ll long long
#define pb push_back
#define Inf 1000000009
#define ppb() pop_back()
#define pii pair <int , int>
#define mid(x, y) (x + y) / 2
#define all(x) x.begin(),x.end()
#define llInf 1000000000000000009
#define tr(i, c) for(__typeof(c).begin() i = (c).begin() ; i != (c).end() ; i++)
using namespace std;
using namespace __gnu_pbds;
typedef tree <int, null_type, less <int>, rb_tree_tag, tree_order_statistics_node_update> order;

int n, k;
ll cnt[33];
int A[Maxn];
int P[Maxn];

vector <int> v, v1, E[Maxn];

int main () {
	//freopen ("file.in", "r", stdin);
	//freopen ("file.out", "w", stdout);
	
 	//srand ((unsigned) time ( NULL ));
	//int randomNumber = rand() % 10 + 1;

	scanf ("%d%d", &n, &k);

	int mn = 40;
	for (int i = 1; i <= n; i++)
		scanf ("%d", A + i);
	
	for (int i = 1; i <= n; i++) {
		int x = A[i];
		while (v.size() > 0 and x == v.back()) {
			v.ppb();
			x++;
		}
		
		v.pb (x);
		P[v.size() - 1] = i;
	}	
	
	for (auto i: v)
		mn = min (i, mn);	
		
	int sm = 0;
			
	for (int i = mn; i < 30; i++) {
		for (int j = 0; j < v.size(); j++) {			
			if (v[j] == i)						
				sm ++, v1.pb (v[j]), E[P[j]].pb (v[j]);
				
			int e = v[j];
			while (v1.size() > 0 and e == v1.back())
				e ++, v1.ppb();
			
			v1.pb (e);
			P[v1.size() - 1] = P[j];
		}
		
		v = v1;
		v1.clear();
	}
		
	k -= sm;	
		
	for (int i = 1; i <= n; i++) {
		printf ("%d ", A[i]);
		
		for (auto j: E[i]) {
			memset (cnt, 0, sizeof (cnt));
			cnt[j] = 1;
						
			for (int l = j; l >= 1; l--) {
				while (k > 0 and cnt[l] > 0)
					cnt[l - 1] += 2, cnt[l] --, k --;			
				
				for (int h = 1; h <= cnt[l]; h++)
					printf ("%d ", l);	
			}
					
		}	
	}	
	
	return 0;
}

Compilation message

zalmoxis.cpp: In function 'int main()':
zalmoxis.cpp:57:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int j = 0; j < v.size(); j++) {   
                   ~~^~~~~~~~~~
zalmoxis.cpp:34:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf ("%d%d", &n, &k);
  ~~~~~~^~~~~~~~~~~~~~~~
zalmoxis.cpp:38:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf ("%d", A + i);
   ~~~~~~^~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 252 ms 29816 KB Output is correct
2 Correct 268 ms 30068 KB Output is correct
3 Correct 269 ms 30068 KB Output is correct
4 Correct 294 ms 30068 KB Output is correct
5 Correct 252 ms 30080 KB Output is correct
6 Correct 276 ms 30080 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 351 ms 30080 KB not a zalsequence
2 Incorrect 233 ms 30380 KB Expected EOF
3 Incorrect 274 ms 30536 KB Expected EOF
4 Incorrect 284 ms 30536 KB not a zalsequence
5 Incorrect 267 ms 30536 KB not a zalsequence
6 Incorrect 252 ms 30536 KB not a zalsequence
7 Incorrect 225 ms 30536 KB not a zalsequence
8 Incorrect 250 ms 30536 KB not a zalsequence
9 Incorrect 405 ms 36760 KB Expected EOF
10 Incorrect 150 ms 36760 KB Unexpected end of file - int32 expected
11 Incorrect 288 ms 36760 KB Unexpected end of file - int32 expected
12 Incorrect 34 ms 36760 KB Unexpected end of file - int32 expected
13 Incorrect 32 ms 36760 KB Unexpected end of file - int32 expected
14 Incorrect 31 ms 36760 KB Unexpected end of file - int32 expected