2^i * 3^j * 5^k なる整数
Posted feedbacks - Erlang
しらみつぶしに計算してからsortする方式ですが、その境界の目処はたてるようにしてみました。 http://en.wikipedia.org/wiki/Image:Regular_divisibility_lattice.svg の図を、3次元空間のある象限に存在する三角錐とみて、それを含む直方体の中の格子点を取り出します。最低でも、およそ5/6が無駄なデータなのですが、うまく三角錐の部分だけの格子点を巡回する順序を決めるアルゴリズムが思い浮かばなかったので、そのままにしてあります。
$ erlc スクリプトのファイル名
$ erl -noshell -s len main 100 -s init stop
として実行します。
see: ハミング数
1 2 3 4 5 6 7 8 9 10 11 | -module(len).
-export([main/1]).
main([N|_]) ->
Limit = list_to_integer(atom_to_list(N)),
Factor = math:pow(Limit * math:log(5) * math:log(2)/ (math:log(2) * math:log(3)), 1 / 3),
L = lists:sort([round(math:pow(2, X)*math:pow(3,Y)*math:pow(5,Z)) ||
X <- lists:seq(0,round(1 + Factor * math:log(5) / math:log(2)) ),
Y <- lists:seq(0,round(1 + Factor * math:log(5) / math:log(3)) ),
Z <- lists:seq(0,round(1 + Factor))]),
io:format("~p~n",[lists:sublist(L,Limit)]).
|

leque
#7554()
Rating1/3=0.33
2^i * 3^j * 5^k の形で表される整数を小さい方から順に 100 個列挙するプログラムを書いてください。 i, j, k は 0 以上の整数です。アルゴリズムのオーダーについても考えてみてください。
例えば最初の 10 個は次のようになります:
※解答では i, j, k の各値を示す必要はありません。
[ reply ]