結果

問題 No.2893 Minahoshi (Hard)
ユーザー V_MelvilleV_Melville
提出日時 2024-09-14 00:09:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,997 bytes
コンパイル時間 4,150 ms
コンパイル使用メモリ 267,160 KB
実行使用メモリ 17,728 KB
最終ジャッジ日時 2024-09-14 00:10:11
合計ジャッジ時間 11,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 RE -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 12 ms
10,944 KB
testcase_05 AC 19 ms
15,044 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 23 ms
14,688 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 23 ms
14,848 KB
testcase_31 AC 12 ms
11,360 KB
testcase_32 AC 12 ms
11,160 KB
testcase_33 AC 22 ms
14,868 KB
testcase_34 AC 20 ms
15,584 KB
testcase_35 AC 12 ms
11,676 KB
testcase_36 AC 12 ms
9,584 KB
testcase_37 AC 23 ms
16,568 KB
testcase_38 AC 11 ms
11,092 KB
testcase_39 AC 12 ms
11,376 KB
testcase_40 AC 12 ms
9,588 KB
testcase_41 AC 13 ms
9,712 KB
testcase_42 AC 21 ms
16,220 KB
testcase_43 AC 21 ms
14,632 KB
testcase_44 AC 23 ms
17,728 KB
testcase_45 AC 21 ms
16,332 KB
testcase_46 AC 21 ms
14,892 KB
testcase_47 AC 22 ms
14,912 KB
testcase_48 AC 12 ms
9,588 KB
testcase_49 AC 12 ms
11,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define PI acos(-1)
#define LSB(i) ((i) & -(i))
#define ll long long
#define pb push_back
#define mp make_pair
#define mt make_tuple
#define fi first
#define sc second
#define th third
#define fo fourth
#define pii pair<int,int>
#define pll pair<ll,ll>
#define ldb double
#define INF 1e15
#define MOD 1000000007
#define endl "\n"

#define all(data)       data.begin(),data.end()
#define TYPEMAX(type)   std::numeric_limits<type>::max()
#define TYPEMIN(type)   std::numeric_limits<type>::min()
#define MAXN 1000007
ll p[MAXN],nxt[MAXN],cnt,k;
bool vis[MAXN];
void DFS(ll i)
{
	vis[i]=true;
	if(!vis[i*2%(1<<k)]) DFS(i*2%(1<<k));
	if(!vis[(i*2+1)%(1<<k)]) DFS((i*2+1)%(1<<k));
	p[++cnt]=i;
}

void solve() {
    ll n; cin>>n;
	while((1<<k)+k<=n+1) k++;
	k--; DFS(0);
	ll ii=1,jj=cnt;
	while(ii<jj) swap(p[ii++],p[jj--]);
	if(n==(1<<k)+k-1)
    {
		for(int i=1;i<k;i++) cout<<0;
		for(int i=1;i<=cnt;i++) cout<<char('a'+(p[i]&1));
		cout << '\n';
		return;
	}
	for(int i=0;i<(1<<(k+1));i++) {vis[i]=0; nxt[i]=-1;}
	for(int i=1;i<=cnt;i++)
    {
        vis[p[i]=(p[i]<<1)|(p[i+1]&1)]=true;
    }
	for(int i=1;i<=cnt;i++) nxt[p[i]]=p[i%cnt+1];
	for(int i=0;i<(1<<(k+1));i++)
    {
        if(nxt[i]<0) nxt[i]=nxt[i^(1<<k)]^1;
    }
	for(int i=0;i<(1<<(k+1));i++)
    {
        if(!vis[i])
        {
            ii=i;
            while(!vis[ii]) {cnt++; vis[ii]=true; ii=nxt[ii];}
            swap(nxt[i],nxt[i^(1<<k)]);
            if(cnt+k>=n)
            {
                for(int j=k;j+1;j--) cout<<char('a'+((nxt[i]>>j)&1));
                jj=nxt[nxt[i]];
                for(int j=k+2;j<=n;j++) {cout<<char('a'+(jj&1)); jj=nxt[jj];}
                cout << '\n';
                break;
            }
        }
	}
}

int main()
{
    ios::sync_with_stdio(false); cin.tie(0);
    int t;
    cin >> t;
    
    while (t--) solve();
	
	return 0;
}
0