A solution to the C problem of contest 992

Правка en1, от siddharth10111, 2024-12-09 17:06:17

992C - Nastya and a Wardrobe

295743692 A solution to the C problem of contest 992, I was really glad to finally manage to solve it (though after the contest)....so much so that I'm sharing this. Do feel free to share your views and feedback.

include <bits/stdc++.h>

using namespace std;

define ll long long int

ll fun(ll a) { if(a<1) return 1; return 2*fun(a-1); } int main() { ll tc; cin>>tc; while(tc--) { ll n,k; cin>>n>>k; ll arr[n]; vectorv; for(int i=0;i<n;i++) { arr[i]=i+1; v.push_back(arr[i]); }

if (n <= 60 && (fun(n - 1)) < k) {
        cout << -1 << endl;
        continue;
    }
    ll ind=min( n-1,(ll)( ceil( log2(1.0*k) ) ) );
    ll mx=fun( min( n-1,ind ));

    ll ref=mx/2;
    ll m=v.size();
    ll it=n-1-ind;
    while(ref>0)
    {
        if(k>ref)
        {
            swap(v[it],v[m-1]);
            m--;
            rotate(v.begin()+it,v.begin()+it+1,v.begin()+m);
            k-=ref;
        }
        else
        {
            it++;
        }
        ref/=2;
    }

    for(int i=0;i<n;i++)
        cout<<v[i]<<" ";
    cout<<endl;

}

}

Теги constructive algorithms

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en8 Английский siddharth10111 2024-12-09 17:12:41 2 Tiny change: 'm:2040C]\nMy Submi' -> 'm:2040C]\n\nMy Submi'
en7 Английский siddharth10111 2024-12-09 17:12:28 4 Tiny change: 'm:2040C]\n\nMY Submissio' -> 'm:2040C]\nMy Submissio'
en6 Английский siddharth10111 2024-12-09 17:12:08 4
en5 Английский siddharth10111 2024-12-09 17:11:35 22 Tiny change: '[problem:2040C]\n[submissio' -> 'Problem:[problem:2040C]\nMY Submission:[submissio'
en4 Английский siddharth10111 2024-12-09 17:10:56 1131
en3 Английский siddharth10111 2024-12-09 17:09:33 20 Tiny change: 'm:2040C]\n==================\n[submiss' -> 'm:2040C]\n[submiss'
en2 Английский siddharth10111 2024-12-09 17:07:58 12
en1 Английский siddharth10111 2024-12-09 17:06:17 1439 Initial revision (published)