結果

問題 No.9 モンスターのレベル上げ
ユーザー letrangerjpletrangerjp
提出日時 2017-05-15 19:11:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,746 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-24 00:00:58
合計ジャッジ時間 18,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,288 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 1,792 ms
12,672 KB
testcase_03 AC 805 ms
12,672 KB
testcase_04 AC 738 ms
12,288 KB
testcase_05 AC 536 ms
12,544 KB
testcase_06 AC 221 ms
12,544 KB
testcase_07 AC 89 ms
12,288 KB
testcase_08 AC 234 ms
12,416 KB
testcase_09 AC 1,573 ms
12,672 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 1,873 ms
12,672 KB
testcase_12 AC 3,746 ms
12,544 KB
testcase_13 AC 92 ms
12,416 KB
testcase_14 AC 1,557 ms
12,544 KB
testcase_15 AC 1,605 ms
12,416 KB
testcase_16 AC 105 ms
12,544 KB
testcase_17 AC 1,067 ms
12,544 KB
testcase_18 AC 854 ms
12,288 KB
testcase_19 AC 105 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(a, b)
  _party = a.sort.map{|v| v * MOD}
  troop = b.map{|v| v / 2 * MOD}
  troop.size.times.inject(1.0/0){|r|
    party = _party.dup
    (troop.all?{|elv|
      lv_cnt = party.shift + elv + 1
      if lv_cnt % MOD < r
        nth = party.bsearch_index{|v| v >= lv_cnt} || party.size
        party.insert(nth, lv_cnt)
      end
    } ? [r, party.map{|v| v % MOD}.max].min : r).tap{
      troop.rotate!
    }
  }
end

N = gets.to_i
A = gets.split.take(N).map(&:to_i)
B = gets.split.take(N).map(&:to_i)
MOD = 2000
p f(A, B)
0