0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ESMじゃんけん大会

Last updated at Posted at 2016-05-13

トーナメントは、参加者数が2の累乗なら、1戦毎に2要素ずつ見て勝者を新しい配列に入れていけば良い。
問題は2の累乗でない場合。2の累乗に満たない数を求め(nil_size)、参加者を「上からnil_size人」と「それ以外」に分ける。「それ以外」に、「上からnil_size人」にいない人をnil_size人加えてリフルシャッフルしたもの、を結合してトーナメント表にすると良い。
実際には実装の都合上配列を逆順にし右からnil_size人に読み替える。

ちなみに、このトーナメント作成方法はCodeIQ デスコロCで採用されている方法である。

実装時間自体は10分。問題見てから実装開始までの時間は聞かないで〜^^;

しかし。TypeScriptやGoだと実装しにくい方針のような気もします。

PS. String#[]に少し気を遣ったので、Ruby 1.8でも動きそう?未確認ですが。

tyama_esm3.rb
# !/usr/bin/env ruby
# http://qiita.com/kunitoo/items/d39c5337d400ad53f224
# https://gist.github.com/kunitoo/76b1d56cc6ffeef9bb62

def battle(x,y)
	(x.size*y.size).times{|i|
		if x[i%x.size]!=y[i%y.size]
			if x[i%x.size]==?R
				return y[i%y.size]==?S ? x : y
			elsif x[i%x.size]==?S
				return y[i%y.size]==?P ? x : y
			elsif x[i%x.size]==?P
				return y[i%y.size]==?R ? x : y
			end
		end
	}
	y
end

if __FILE__==$0
	while gets
		#participants生成方法はデスマコロシアム(デスコロC)を流用するため、dataは降順である必要がある
		data=$_.chomp[1..-2].split(')(').reverse
		num=1
		num*=2 while num<data.size
		nil_size=num-data.size

		participants=data[0..-nil_size-1]+(nil_size==0 ? [] : (data[-nil_size..-1]+[nil]*nil_size).each_slice(nil_size).to_a.transpose.flat_map{|e|e})
		while participants.size>1
			participants_next=[]
			participants.each_slice(2){|x,y|
				if y
					participants_next<<battle(x,y)
				else
					participants_next<<x
				end
			}
			participants=participants_next
		end
		puts '('+participants[0]+')'
		STDOUT.flush
	end
end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?