結果
問題 | No.566 だいたい完全二分木 |
ユーザー |
|
提出日時 | 2017-09-08 22:50:36 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 681 bytes |
コンパイル時間 | 1,310 ms |
コンパイル使用メモリ | 160,232 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 05:48:34 |
合計ジャッジ時間 | 1,971 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d",&k); | ~~~~~^~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define MOD 1000000007LL using namespace std; typedef long long ll; typedef pair<int,int> P; int k; bool already[5001]; vector<int> res[15]; vector<int> ans; int main(void){ scanf("%d",&k); if(k==2){ printf("%d %d %d\n",1,3,2); return 0; } for(int i=0;i<k;i++){ int v=1<<(k-i-1); for(int j=v;j<(1<<k);j+=v){ if(!already[j]){ already[j]=true; res[i].push_back(j); } } } swap(res[k-2][res[k-2].size()-1],res[k-1][res[k-1].size()-1]); for(int i=0;i<k;i++){ for(int j=0;j<res[i].size();j++){ ans.push_back(res[i][j]); } } for(int i=0;i<ans.size();i++){ printf("%d%c",ans[i],i+1==ans.size()?'\n':' '); } return 0; }