結果

問題 No.566 だいたい完全二分木
ユーザー アロンアルファアロンアルファ
提出日時 2017-10-04 14:30:47
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 666 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 65,496 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 06:04:13
合計ジャッジ時間 1,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <vector>

void set(std::vector<int>*m,std::vector<int> *f,int l,int r)
{
	if(r == l){
		f->push_back(m->at(r)); 
		return;
	}
	int mid = (r+l)/2;
	f->push_back(m->at(mid));
	set(m,f,l,mid-1);
	set(m,f,mid+1,r);
}

int main()
{
	int N,s,m;
	std::vector<int> v,f;

	std::cin >> N;

	srand((unsigned)time(NULL));

	s = pow(2,N)-1;
	for(int i = 0;i < s;i++) v.push_back(i+1);
	for(int i = 0;i < s;i++){
		m = rand()%(s-i);
		f.push_back(v.at(m));
		v.erase(v.begin()+m);
	}

	set(&f,&v,0,s-1);
	for(int i = 0;i < s;i++) std::cout << v.at(i) << ' ';
	std::cout << std::endl;

	return 0;
}
0