Submission #60580

# Submission time Handle Problem Language Result Execution time Memory
60580 2018-07-24T11:12:30 Z egorlifar Zalmoxis (BOI18_zalmoxis) C++17
5 / 100
813 ms 206004 KB
/*
ЗАПУСКАЕМ 
░ГУСЯ░▄▀▀▀▄░РАБОТЯГУ░░
▄███▀░◐░░░▌░░░░░░░
░░░░▌░░░░░▐░░░░░░░
░░░░▐░░░░░▐░░░░░░░
░░░░▌░░░░░▐▄▄░░░░░
░░░░▌░░░░▄▀▒▒▀▀▀▀▄
░░░▐░░░░▐▒▒▒▒▒▒▒▒▀▀▄
░░░▐░░░░▐▄▒▒▒▒▒▒▒▒▒▒▀▄
░░░░▀▄░░░░▀▄▒▒▒▒▒▒▒▒▒▒▀▄
░░░░░░▀▄▄▄▄▄█▄▄▄▄▄▄▄▄▄▄▄▀▄
░░░░░░░░░░░▌▌░▌▌░░░░░
░░░░░░░░░░░▌▌░▌▌░░░░░
░░░░░░░░░▄▄▌▌▄▌▌░░░░░ 
 */
#include <iostream>
#include <complex>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <numeric>
#include <cstring>
#include <ctime>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <list>
#include <cmath>
#include <bitset>
#include <cassert>
#include <queue>
#include <stack>
#include <deque>
    
     
using namespace std;
template<typename T1, typename T2>inline void chkmin(T1 &x, T2 y) { if (x > y) x = y; }
template<typename T1, typename T2>inline void chkmax(T1 &x, T2 y) { if (x < y) x = y; } 
template<typename T, typename U> inline ostream &operator<< (ostream &_out, const pair<T, U> &_p) { _out << _p.first << ' ' << _p.second; return _out; }
template<typename T, typename U> inline istream &operator>> (istream &_in, pair<T, U> &_p) { _in >> _p.first >> _p.second; return _in; }
template<typename T> inline ostream &operator<< (ostream &_out, const vector<T> &_v) { if (_v.empty()) { return _out; } _out << _v.front(); for (auto _it = ++_v.begin(); _it != _v.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T> inline istream &operator>> (istream &_in, vector<T> &_v) { for (auto &_i : _v) { _in >> _i; } return _in; }
template<typename T> inline ostream &operator<< (ostream &_out, const set<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T> inline ostream &operator<< (ostream &_out, const multiset<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T> inline ostream &operator<< (ostream &_out, const unordered_set<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T> inline ostream &operator<< (ostream &_out, const unordered_multiset<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T, typename U> inline ostream &operator<< (ostream &_out, const map<T, U> &_m) { if (_m.empty()) { return _out; } _out << '(' << _m.begin()->first << ": " << _m.begin()->second << ')'; for (auto _it = ++_m.begin(); _it != _m.end(); ++_it) { _out << ", (" << _it->first << ": " << _it->second << ')'; } return _out; }
template<typename T, typename U> inline ostream &operator<< (ostream &_out, const unordered_map<T, U> &_m) { if (_m.empty()) { return _out; } _out << '(' << _m.begin()->first << ": " << _m.begin()->second << ')'; for (auto _it = ++_m.begin(); _it != _m.end(); ++_it) { _out << ", (" << _it->first << ": " << _it->second << ')'; } return _out; }
#define sz(c) (int)(c).size()
#define all(c) (c).begin(), (c).end()
#define rall(c) (c).rbegin(), (c).rend()
#define left left228
#define right right228
#define next next228
#define rank rank228
#define prev prev228
#define y1 y1228                                                         
#define read(FILENAME) freopen((FILENAME + ".in").c_str(), "r", stdin)
#define write(FILENAME) freopen((FILENAME + ".out").c_str(), "w", stdout)
#define files(FILENAME) read(FILENAME), write(FILENAME)
#define pb push_back
const string FILENAME = "input";
const int MAXN = 2000001;


int n, k;
int a[MAXN];
vector<int> g[MAXN];


int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	//read(FILENAME);
    cin >> n >> k;
    vector<pair<int, pair<int, int> > > st;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        st.pb({a[i], {i, i}});
    }
    for (int t = 1; t <= 29; t++) {
        vector<pair<int, pair<int, int> > > st1;
        for (int i = 0; i < sz(st); i++) {
            if (st1.empty()) {
                st1.pb(st[i]);
                continue;
            }
            if (st[i].first == t) {
                if (st1.back().first == t) {
                    st1.back().first++;
                    st1.back().second.second = st[i].second.second;
                } else {
                    st1.pb(st[i]);
                }
            } else {
                if (st1.back().first == t) {
                    st1.back().first++;
                    k--;
                    g[st1.back().second.second].pb(t);
                }
                st1.pb(st[i]);
            }
        }
        if (st1.back().first == t) {
            st1.back().first++;
            k--;    
            g[st1.back().second.second].pb(t);
        }
        st = st1;
    }
    vector<int> ans;
    for (int i = 0; i < n; i++) {
        ans.pb(a[i]);
        for (auto x: g[i]) {;
            if (k) {
                if (k >= (1 << (x - 1)) - 1) {
                    for (int j = 0; j < (1 << (x - 1)); j++) {
                        ans.pb(1);
                    }
                    k -= (1 << (x - 1)) - 1;
                    continue;
                }
                int cur = x;
                for (int t = x - 2; t >= 0; t--) {
                    if (k >= (1 << t) && t <= cur - 2) {
                        cur--;
                        for (int j = 0; j < (1 << t); j++) {
                            ans.pb(cur - t);
                        }
                        k -= (1 << t);
                        if (k == 0) {
                            break;
                        }
                    }
                }
                ans.pb(cur);
            } else {
                ans.pb(x);
            }
        }
    }
    assert(k == 0);
    for (int i = 0; i < sz(ans); i++) {
        cout << ans[i] << ' ';
    }
	return 0; 		
}
# Verdict Execution time Memory Grader output
1 Runtime error 691 ms 194840 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Runtime error 706 ms 194840 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Runtime error 728 ms 194840 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Runtime error 672 ms 194840 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Runtime error 794 ms 194840 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Runtime error 707 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 760 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Runtime error 813 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Runtime error 730 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Runtime error 736 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Runtime error 752 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Runtime error 807 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
7 Runtime error 736 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
8 Runtime error 543 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
9 Runtime error 571 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
10 Incorrect 335 ms 206004 KB not a zalsequence
11 Runtime error 464 ms 206004 KB Execution killed with signal 11 (could be triggered by violating memory limits)
12 Incorrect 163 ms 206004 KB not a zalsequence
13 Incorrect 181 ms 206004 KB not a zalsequence
14 Correct 163 ms 206004 KB Output is correct