답안 #750122

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
750122 2023-05-29T06:59:52 Z vqpahmad Zalmoxis (BOI18_zalmoxis) C++14
45 / 100
385 ms 206912 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long 
#define ll long long
#define pii pair<int,int>
#define F first
#define S second
#define endl '\n'
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
const int mod = 1e9 + 7;
const int N = 1e6 + 15;
const ll inf = 1e18;

int n,k;
vector<pii> ans;
int cnt = 0;
void pr(int o){
    if (k>0&&o>0){
        k--;
        pr(o-1);
        pr(o-1);
        return ;
    }
    cnt++;
    cout << o << ' ';
}
int32_t main(){
    ios_base::sync_with_stdio(0);cin.tie(0);
    cin >> n >> k;
    stack<int> st;
    st.push(100);
    vector<int> a(n);
    map<int,vector<int>> mp;
    for (int i=0;i<n;i++){
        int x;
        cin >> x;
        a[i] = x;
        if (x < st.top()){
            st.push(x);
            continue;
        }
        if (x > st.top()){
            while (x > st.top()){
                int u = st.top();
                mp[i-1].pb(u);
                while (u==st.top()){
                    st.pop();
                    u++;
                }
                st.push(u);
            }
        }
        if (x==st.top()){
            int u = st.top();
            while (u==st.top()){
                st.pop();
                u++;
            }
            st.push(u);
        }
    }
    while (st.top()!=30){
        int u = st.top();
        mp[n-1].pb(u);
        while (u==st.top()){
            st.pop();
            u++;
        }
        st.push(u);
    }
    for (int i=0;i<n;i++){
        ans.push_back({a[i],0});
        for (auto it : mp[i]) {
            ans.push_back({it,1});
            k--;
        }
    }
    while (st.size()) st.pop();
    n = sz(ans);
    st.push(ans[0].F);
    for (int i=1;i<n;i++){
        int u = ans[i].F;
        while (st.size()&&u==st.top()){
            st.pop();
            u++;
        }
        st.push(u);
    }
    assert(st.top() == 30 && st.size()==1);
    for (int i=0;i<n;i++){
        if (ans[i].S==0){
            cout << ans[i].F << ' ';
        }
        else pr(ans[i].F);
    }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 376 ms 104096 KB Output is correct
2 Correct 382 ms 104204 KB Output is correct
3 Correct 378 ms 104176 KB Output is correct
4 Correct 382 ms 104228 KB Output is correct
5 Correct 373 ms 104168 KB Output is correct
6 Correct 385 ms 104156 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 379 ms 206680 KB Execution killed with signal 6
2 Runtime error 320 ms 206912 KB Execution killed with signal 6
3 Runtime error 318 ms 206912 KB Execution killed with signal 6
4 Runtime error 374 ms 206880 KB Execution killed with signal 6
5 Runtime error 378 ms 206740 KB Execution killed with signal 6
6 Runtime error 374 ms 206780 KB Execution killed with signal 6
7 Runtime error 375 ms 206740 KB Execution killed with signal 6
8 Runtime error 383 ms 206736 KB Execution killed with signal 6
9 Runtime error 273 ms 179596 KB Execution killed with signal 6
10 Runtime error 115 ms 73312 KB Execution killed with signal 6
11 Runtime error 183 ms 117872 KB Execution killed with signal 6
12 Correct 69 ms 2252 KB Output is correct
13 Correct 71 ms 2296 KB Output is correct
14 Correct 71 ms 2288 KB Output is correct