結果
問題 | No.392 2分木をたどれ |
ユーザー | ibuki2003 |
提出日時 | 2017-09-30 17:18:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 753 bytes |
コンパイル時間 | 2,050 ms |
コンパイル使用メモリ | 169,856 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 20:55:36 |
合計ジャッジ時間 | 1,837 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 9 ms
6,816 KB |
testcase_02 | AC | 9 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i) #define REPR(i, n) for(int i = n;i >= 0;i--) #define REP3(i, m, n) for(int i = m, i##_len=(n);i < i##_len;i++) #define FORVEC(i, v) for(int i = 0;i < v.size();i++) #define INF 1000000000 #define pb(a) push_back(a) #define llong long long /* 0 1 3 7 15 31 63 127 255 511 1023 2047 */ int main(){ int m; int a; int dan; int buf; string rout; cin>>m; REP(i,m){ rout=""; cin>>a; dan=floor(log(a+1)/log(2));//aはdan段目 REPR(j,dan){ if(j==0)break; buf=(a-(1<<j)+1); if(buf%2==0){ rout="L"+rout; }else{ rout="R"+rout; } //cout<<buf<<endl; a=buf/2+(1<<(j-1))-1; } cout<<rout<<endl; } return 0; }