結果
問題 | No.2893 Minahoshi (Hard) |
ユーザー | V_Melville |
提出日時 | 2024-09-13 23:54:09 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,094 bytes |
コンパイル時間 | 2,914 ms |
コンパイル使用メモリ | 245,280 KB |
実行使用メモリ | 14,184 KB |
最終ジャッジ日時 | 2024-09-13 23:54:20 |
合計ジャッジ時間 | 9,590 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | AC | 12 ms
10,496 KB |
testcase_04 | AC | 10 ms
9,164 KB |
testcase_05 | AC | 14 ms
12,928 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 16 ms
12,616 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 | 18 ms
13,308 KB |
testcase_31 | AC | 9 ms
7,424 KB |
testcase_32 | AC | 9 ms
9,164 KB |
testcase_33 | AC | 15 ms
13,056 KB |
testcase_34 | AC | 14 ms
14,184 KB |
testcase_35 | AC | 10 ms
9,412 KB |
testcase_36 | AC | 9 ms
9,160 KB |
testcase_37 | AC | 17 ms
13,452 KB |
testcase_38 | AC | 9 ms
9,160 KB |
testcase_39 | AC | 10 ms
7,552 KB |
testcase_40 | AC | 10 ms
7,680 KB |
testcase_41 | AC | 9 ms
7,680 KB |
testcase_42 | AC | 16 ms
12,492 KB |
testcase_43 | AC | 16 ms
12,440 KB |
testcase_44 | AC | 17 ms
11,520 KB |
testcase_45 | AC | 16 ms
12,452 KB |
testcase_46 | AC | 16 ms
12,988 KB |
testcase_47 | AC | 16 ms
12,620 KB |
testcase_48 | AC | 9 ms
9,228 KB |
testcase_49 | AC | 9 ms
9,164 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; const int o=1e6; 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; }