結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | sue_charo |
提出日時 | 2017-05-01 14:14:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 990 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 19,228 KB |
最終ジャッジ日時 | 2024-09-14 01:51:58 |
合計ジャッジ時間 | 6,928 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
11,392 KB |
testcase_01 | AC | 37 ms
11,520 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
# coding: utf-8 import array, bisect, collections, copy, heapq, itertools, math, random, re, string, sys, time sys.setrecursionlimit(10 ** 7) INF = 10 ** 20 MOD = 10 ** 9 + 7 def II(): return int(input()) def ILI(): return list(map(int, input().split())) def IAI(LINE): return [ILI() for __ in range(LINE)] def IDI(): return {key: value for key, value in ILI()} def solve(N, A, B): my_mon = [] for a in A: heapq.heappush(my_mon, [a, 0]) ans = INF for i in range(N): my_mon_copy = copy.deepcopy(my_mon) ene_mon = B[i: N] + B[0: i] for ene in ene_mon: fig_mon = heapq.heappop(my_mon_copy) heapq.heappush(my_mon_copy, [fig_mon[0] + (ene // 2), fig_mon[1] + 1]) l_fight = [mon[1] for mon in my_mon_copy] max_num = max(l_fight) ans = min(ans, max_num) return ans def main(): N = II() A = ILI() B = ILI() print(solve(N, A, B)) if __name__ == "__main__": main()