結果
問題 | No.566 だいたい完全二分木 |
ユーザー | tnakao0123 |
提出日時 | 2017-09-14 18:54:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 962 bytes |
コンパイル時間 | 905 ms |
コンパイル使用メモリ | 87,796 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 19:54:55 |
合計ジャッジ時間 | 1,409 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,248 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 566.cc: No.566 だいたい完全二分木 - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ /* typedef */ typedef vector<int> vi; /* global variables */ vi v; /* subroutines */ void rec(int i, int j) { if (i == j) v.push_back(i); else if (i == 1 && j == 3) v.push_back(1), v.push_back(2), v.push_back(3); else { int h = (i + j) / 2; v.push_back(h); rec(i, h - 1); rec(h + 1, j); } } /* main */ int main() { int k; cin >> k; rec(1, (1 << k) - 1); for (int i = 0; i < v.size(); i++) { if (i) putchar(' '); printf("%d", v[i]); } putchar('\n'); return 0; }