結果

問題 No.318 学学学学学
ユーザー koyumeishikoyumeishi
提出日時 2015-12-11 02:13:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 919 ms / 2,000 ms
コード長 1,429 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,244 KB
最終ジャッジ日時 2024-06-22 15:15:13
合計ジャッジ時間 16,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
13,696 KB
testcase_01 AC 213 ms
15,488 KB
testcase_02 AC 238 ms
15,232 KB
testcase_03 AC 184 ms
14,720 KB
testcase_04 AC 221 ms
15,232 KB
testcase_05 AC 919 ms
29,072 KB
testcase_06 AC 765 ms
27,412 KB
testcase_07 AC 708 ms
26,728 KB
testcase_08 AC 687 ms
26,076 KB
testcase_09 AC 639 ms
25,952 KB
testcase_10 AC 528 ms
26,240 KB
testcase_11 AC 912 ms
29,244 KB
testcase_12 AC 787 ms
27,504 KB
testcase_13 AC 742 ms
26,732 KB
testcase_14 AC 681 ms
26,012 KB
testcase_15 AC 632 ms
26,208 KB
testcase_16 AC 508 ms
26,240 KB
testcase_17 AC 739 ms
26,304 KB
testcase_18 AC 747 ms
26,408 KB
testcase_19 AC 748 ms
26,492 KB
testcase_20 AC 529 ms
24,704 KB
testcase_21 AC 87 ms
12,416 KB
testcase_22 AC 87 ms
12,544 KB
testcase_23 AC 87 ms
12,672 KB
testcase_24 AC 88 ms
12,288 KB
testcase_25 AC 90 ms
12,672 KB
testcase_26 AC 90 ms
12,544 KB
testcase_27 AC 88 ms
12,416 KB
testcase_28 AC 88 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#coding = utf-8
require "set"

💩 = gets.to_i;
💩💩 = gets.split().map(&:to_i);

💩💩💩💩 = 💩💩.sort().uniq()

👾 = 💩💩💩💩.size;

for 🚽 in 0...💩 do
	👇 = -1;
	👆 = 👾-1;
	while (👆-👇>1) do
		💪 = (👇+👆)/2;
		if 💩💩[🚽] <= 💩💩💩💩[💪] then
			👆 = 💪;
		else
			👇 = 💪;
		end
	end
	💩💩[🚽] = 👆;
end

🐕💩 = Array.new(👾);
🐈💩 = Array.new(👾);

0.upto(💩-1) { |🚽|
	🐕💩[ 💩💩[🚽] ] = 🚽;
}

(💩-1).downto(0) { |🚽|
	🐈💩[ 💩💩[🚽] ] = 🚽;
}

$👉💩 = Array.new(👾+5, 0);
$💩👈 = 👾;
def add(i,x)
	i+=1;
	while(i<=$💩👈) do
		$👉💩[i] += x;
		i += i&-i;
	end
end

def get_sum(i)
	i+=1;
	ret = 0;
	while(i>0) do
		ret += $👉💩[i];
		i -= i&-i;
	end
	return ret;
end

def lower_bound(v)
	if (v<=0) then
		return 0;
	end
	x = 0;
	k = 1;
	while (k<<1) <= $💩👈 do
		k<<=1;
	end
	while k>0 do
		if(x+k<=$💩👈 && $👉💩[x+k] < v) then
			v -= $👉💩[x+k];
			x += k;
		end
		k >>= 1;
	end
	return x+1;
end

🎅 = Array.new(💩, "🎅");
contain_💩 = 0;

0.upto(💩-1) { |🚽|
	if 🐈💩[ 💩💩[🚽] ] == 🚽 then
		add(💩💩[🚽], 1);
		contain_💩 += 1;
	end
	
	🎅[🚽] = 💩💩💩💩[lower_bound(contain_💩)-1];
	
	if 🐕💩[ 💩💩[🚽] ] == 🚽 then
		add(💩💩[🚽], -1);
		contain_💩 -= 1;
	end
}


puts 🎅.join(" ")
0