답안 #977321

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
977321 2024-05-07T18:13:52 Z alexdd Zalmoxis (BOI18_zalmoxis) C++17
40 / 100
270 ms 81112 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long
int n,k,cnt;
set<pair<int,int>> rez;
vector<int> pozs[31];
int a[2000005],inita[2000005];
int nxt[2000005][2],prec[2000005][2];
void baga_dupa(int p, int x, int c)
{
    int pnxt = nxt[p][c];
    nxt[p][c] = x;
    nxt[x][c] = pnxt;

    prec[x][c] = p;
    prec[pnxt][c] = x;
}
void scoate(int p, int c)
{
    nxt[prec[p][c]][c] = nxt[p][c];
    prec[nxt[p][c]][c] = prec[p][c];
}
vector<int> aux;
void calc(int x)
{
    if(k==0 || x==0)
    {
        aux.push_back(x);
        return;
    }
    k--;
    calc(x-1);
    calc(x-1);
}
signed main()
{
    ios_base::sync_with_stdio(0);cin.tie(0);
    cin>>n>>k;
    int initn=n;
    for(int i=1;i<=n;i++)
    {
        cin>>a[i];
        inita[i]=a[i];
        prec[i][0]=prec[i][1]=i-1;
        nxt[i][0]=nxt[i][1]=i+1;
        pozs[a[i]].push_back(i);
    }
    nxt[n][0]=nxt[n][1]=0;
    for(int i=0;i<30;i++)
    {
        sort(pozs[i].begin(),pozs[i].end());
        for(int j=(int)pozs[i].size()-1;j>=0;j--)
        {
            if(j>0 && nxt[pozs[i][j-1]][0] == pozs[i][j])
            {
                //cout<<i<<" zzz\n";
                pozs[i+1].push_back(pozs[i][j]);

                a[pozs[i][j]]++;
                scoate(pozs[i][j-1],0);
                j--;
            }
            else
            {
                pozs[i+1].push_back(pozs[i][j]);

                k--;
                n++;
                a[n]=inita[n]=i;
                baga_dupa(pozs[i][j],n,1);
                a[pozs[i][j]]++;
            }
        }
        /*cout<<i<<"    ";
        int cur=1;
        while(cur!=0)
        {
            cout<<a[cur]<<" ";
            cur = nxt[cur][0];
        }
        cout<<"\n";*/
    }
    int cur=1;
    for(int i=1;i<=n;i++)
    {
        if(cur<=initn) aux.push_back(inita[cur]);
        else calc(inita[cur]);
        cur = nxt[cur][1];
    }
    for(auto x:aux)
        cout<<x<<" ";
    return 0;
}
/**
5 1
29 27 25 25 28

1 5
29
*/
# 결과 실행 시간 메모리 Grader output
1 Correct 247 ms 80172 KB Output is correct
2 Correct 261 ms 80316 KB Output is correct
3 Correct 255 ms 80388 KB Output is correct
4 Correct 254 ms 80188 KB Output is correct
5 Correct 246 ms 80456 KB Output is correct
6 Correct 256 ms 81104 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 258 ms 79884 KB not a zalsequence
2 Incorrect 249 ms 81112 KB not a zalsequence
3 Incorrect 254 ms 78280 KB not a zalsequence
4 Incorrect 262 ms 80304 KB not a zalsequence
5 Incorrect 270 ms 80484 KB not a zalsequence
6 Correct 252 ms 79988 KB Output is correct
7 Correct 267 ms 80700 KB Output is correct
8 Incorrect 257 ms 80492 KB not a zalsequence
9 Incorrect 220 ms 75096 KB not a zalsequence
10 Incorrect 116 ms 43976 KB not a zalsequence
11 Incorrect 167 ms 55864 KB not a zalsequence
12 Incorrect 55 ms 16564 KB not a zalsequence
13 Incorrect 55 ms 16524 KB not a zalsequence
14 Incorrect 52 ms 16564 KB not a zalsequence