結果
問題 | No.2893 Minahoshi (Hard) |
ユーザー | V_Melville |
提出日時 | 2024-09-14 00:04:43 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,096 bytes |
コンパイル時間 | 2,891 ms |
コンパイル使用メモリ | 245,844 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-09-14 00:04:58 |
合計ジャッジ時間 | 14,509 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | AC | 13 ms
10,240 KB |
testcase_04 | AC | 9 ms
7,424 KB |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
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 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
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 | RE | - |
testcase_31 | AC | 9 ms
7,424 KB |
testcase_32 | AC | 9 ms
7,552 KB |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 9 ms
7,424 KB |
testcase_36 | AC | 9 ms
7,424 KB |
testcase_37 | RE | - |
testcase_38 | AC | 10 ms
7,424 KB |
testcase_39 | AC | 9 ms
7,552 KB |
testcase_40 | AC | 9 ms
7,424 KB |
testcase_41 | AC | 9 ms
7,424 KB |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | AC | 9 ms
7,552 KB |
testcase_49 | AC | 9 ms
7,424 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; const int o=2e5+5; int n,K,pth[o],cnt,nxt[o];bool vis[o]; void dfs(int nw){ if(vis[nw]) return; vis[nw]=1;dfs(nw*2%(1<<K));dfs((nw*2+1)%(1<<K));pth[++cnt]=nw; } void solve() { scanf("%d",&n); K = 0; for(;(1<<K)+K-1<=n;++K); --K; dfs(0); for(int i=1,j=cnt;i<j;swap(pth[i++],pth[j--])); if(n==(1<<K)+K-1){ for(int i=1;i<K;++i) putchar(97); for(int i=1;i<=cnt;++i) putchar(97+pth[i]%2); 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[pth[i]=(pth[i]<<1)|(pth[i+1]&1)]=1; for(int i=1;i<=cnt;++i) nxt[pth[i]]=pth[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,t;i<(1<<(K+1));++i) if(!vis[i]){ for(t=i;!vis[t];t=nxt[t]) vis[t]=1,++cnt; swap(nxt[i],nxt[i^(1<<K)]); if(cnt+K>=n){ for(int j=K;j+1;--j) putchar(97+((nxt[i]>>j)&1)); for(int j=K+2,t=nxt[nxt[i]];j<=n;++j,t=nxt[t]) putchar(97+(t&1)); cout << '\n'; break; } } } int main(){ int t; scanf("%d", &t); while (t--) solve(); return 0; }