結果

問題 No.392 2分木をたどれ
ユーザー YoshiRyuYoshiRyu
提出日時 2017-01-05 19:34:20
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 633 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 160,332 KB
実行使用メモリ 17,908 KB
最終ジャッジ日時 2024-12-17 13:56:30
合計ジャッジ時間 13,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void Slove()’:
main.cpp:6:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 | #define SF(f,v) scanf(f,v)
      |                 ~~~~~^~~~~
main.cpp:18:9: note: in expansion of macro ‘SF’
   18 |         SF("%d", &m);
      |         ^~
main.cpp:6:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 | #define SF(f,v) scanf(f,v)
      |                 ~~~~~^~~~~
main.cpp:22:17: note: in expansion of macro ‘SF’
   22 |                 SF("%d", &A);
      |                 ^~
main.cpp:6:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 | #define SF(f,v) scanf(f,v)
      |                 ~~~~~^~~~~
main.cpp:20:16: note: in expansion of macro ‘SF’
   20 |         while (SF("%d", &m), m--)
      |                ^~

ソースコード

diff #

#include "bits/stdc++.h"

// マクロ群
#define REP(i,n) for(int i=0;i<n;i++)
#define rep(n) REP(i,n)
#define SF(f,v) scanf(f,v)
#define PF(f,v) printf(f,v)

using namespace std;

// 引き当てよう文字列
const char got[2] = { 'R', 'L' };

void Slove()
{
	int m, A;

	SF("%d", &m);

	while (SF("%d", &m), m--)
	{
		SF("%d", &A);

		string ans = "";
		do
		{
			// 偶数だったら"R" 奇数だったら"L" を回答文字列の先頭に差し込む
			ans = got[ bitset<1>(A)[0] ] + ans;

			// ツリー上の親を探す
			--A >>= 1;

		} while (A != 0);

		puts(ans.c_str());
	}
}

int main()
{
	Slove();
	return 0;
}
0