結果

問題 No.2893 Minahoshi (Hard)
ユーザー ShaojiaShaojia
提出日時 2024-09-17 11:50:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 1,751 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 217,592 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-09-17 11:50:49
合計ジャッジ時間 5,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 7 ms
7,680 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 8 ms
7,808 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 10 ms
7,808 KB
testcase_10 AC 7 ms
6,944 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 7 ms
6,944 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 5 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 6 ms
6,944 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 5 ms
6,944 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 6 ms
6,944 KB
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 5 ms
6,940 KB
testcase_28 AC 6 ms
6,944 KB
testcase_29 AC 7 ms
6,940 KB
testcase_30 AC 10 ms
7,680 KB
testcase_31 AC 6 ms
6,944 KB
testcase_32 AC 6 ms
6,940 KB
testcase_33 AC 9 ms
7,680 KB
testcase_34 AC 8 ms
7,680 KB
testcase_35 AC 6 ms
6,944 KB
testcase_36 AC 6 ms
6,944 KB
testcase_37 AC 10 ms
7,680 KB
testcase_38 AC 6 ms
6,944 KB
testcase_39 AC 7 ms
6,944 KB
testcase_40 AC 6 ms
6,940 KB
testcase_41 AC 6 ms
6,944 KB
testcase_42 AC 10 ms
7,680 KB
testcase_43 AC 10 ms
7,808 KB
testcase_44 AC 10 ms
7,808 KB
testcase_45 AC 9 ms
7,680 KB
testcase_46 AC 10 ms
7,808 KB
testcase_47 AC 10 ms
7,680 KB
testcase_48 AC 6 ms
6,940 KB
testcase_49 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
using namespace std;
#define rep(Ii,Jj,Kk) for(int Ii=(Jj),Ii##_=(Kk);Ii<=Ii##_;Ii++)
#define per(Ii,Jj,Kk) for(int Ii=(Jj),Ii##_=(Kk);Ii>=Ii##_;Ii--)
typedef long long ll;
typedef unsigned long long ull;
typedef unsigned uint;
typedef long double db;
#define fir first
#define sec second
#define siz(Aa) ((int)(Aa).size())
#define all(Aa) (Aa).begin(),(Aa).end()
#define ckmx(Aa,Bb) (Aa=max(Aa,Bb))
#define ckmn(Aa,Bb) (Aa=min(Aa,Bb))

const int N=1<<18;
int n,k,s[N],st,root,lst;
bool vis[N],to[N],out[N];
void dfs(int x){
	for(int y:{x<<1,x<<1|1}){
		if(!vis[y]){
			vis[y]=true;
			dfs(y&((1<<k-1)-1));
			s[st++]=y;
		}
	}
}
signed main(){ios::sync_with_stdio(false),cin.tie(nullptr);
	int T;cin>>T;
	while(T--){
		cin>>n;
		if(n==1){
			cout<<"a";
			goto hell;
		}
		k=1;
		while((1<<k)+k-1<=n) k++;
		k--;
		fill(vis,vis+(1<<k),false);
		st=0;
		dfs(0);
		reverse(s,s+st);
		assert(st==(1<<k));
		rep(i,0,st-2) to[s[i]]=s[i+1]&1;
		to[s[st-1]]=s[0]&1;
		fill(vis,vis+(1<<k),false);
		lst=n-(k-1)-(1<<k);
		root=-1;
		fill(out,out+(1<<k),false);
		rep(i,0,(1<<k)-1) if(!vis[i]){
			out[i]=true;
			for(int j=i,jj;;j=jj){
				vis[j]=true;
				lst--;
				jj=(j<<1|!to[j])&(1<<k)-1;
				if(jj==i) break;
			}
			if(lst<=0){
				root=(i<<1|to[i])&(1<<k)-1;
				break;
			}
		}
		assert(root!=-1);
		per(i,k-1,0) cout<<char((root>>i&1)+'a');
		lst=n-k;
		while(true){
			if(out[root]){
				for(int j=root,jj;;j=jj){
					if(!lst) goto hell;
					lst--;
					cout<<char(!to[j]+'a');
					jj=(j<<1|!to[j])&(1<<k)-1;
					if(jj==root) break;
				}
			}
			if(!lst) goto hell;
			lst--;
			cout<<char(to[root]+'a');
			root=(root<<1|to[root])&(1<<k)-1;
		}
		hell:;
		cout<<"\n";
	}
return 0;}
/*
*/
0