結果

問題 No.9 モンスターのレベル上げ
ユーザー gigurururugigurururu
提出日時 2015-01-29 20:26:41
言語 Ruby
(3.2.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 768 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 11,276 KB
実行使用メモリ 31,928 KB
最終ジャッジ日時 2023-09-05 07:54:56
合計ジャッジ時間 31,977 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
15,056 KB
testcase_01 AC 84 ms
15,012 KB
testcase_02 AC 2,790 ms
31,868 KB
testcase_03 AC 1,434 ms
28,900 KB
testcase_04 AC 1,197 ms
22,848 KB
testcase_05 AC 852 ms
20,208 KB
testcase_06 AC 328 ms
16,960 KB
testcase_07 AC 84 ms
15,084 KB
testcase_08 AC 388 ms
17,704 KB
testcase_09 AC 2,426 ms
31,636 KB
testcase_10 AC 83 ms
15,152 KB
testcase_11 AC 3,568 ms
31,928 KB
testcase_12 TLE -
testcase_13 AC 3,365 ms
31,712 KB
testcase_14 AC 2,502 ms
31,772 KB
testcase_15 AC 2,489 ms
30,916 KB
testcase_16 AC 120 ms
15,544 KB
testcase_17 AC 1,680 ms
25,380 KB
testcase_18 AC 1,407 ms
23,896 KB
testcase_19 AC 107 ms
15,300 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class BinHeap
  def initialize(buf=nil)
    @buf=buf||[nil]
    @max=@buf.size
  end
  def add(n)
    a=@buf[i=@max]=n
    @max+=1
    while i>1 && a<b=@buf[i/2]
      @buf[i]=b
      i/=2
    end
    @buf[i]=a
  end
  def get
    ret=@buf[1]
    a=@buf[i=1]=@buf[l=@max-=1]
    while (c=i*2)<l
      c+=1 if @buf[c]>(@buf[c+1]||1e9)
      break if a<=b=@buf[c]
      @buf[i]=b
      i=c
    end
    @buf[i]=a
    ret
  end
  def dup
    BinHeap.new(@buf[0..@max-1])
  end
end
n=gets.to_i
pq_base=BinHeap.new
gets.split.each{|i|pq_base.add(i.to_i<<11)}
b=gets.split.map{|i|i.to_i/2<<11}
min=1e9
n.times{
  pq=pq_base.dup
  max=0
  b.rotate!.each{|e|
    pq.add(top=pq.get+e+1)
    top&=0x7FF
    max=top if max<top
    break if min<top
  }
  min=max if min>max
}
p min
0