結果
問題 | No.566 だいたい完全二分木 |
ユーザー | ryoissy |
提出日時 | 2017-09-08 22:50:36 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
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; }