結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | はむ吉🐹 |
提出日時 | 2016-05-27 20:47:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,149 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-09-26 02:59:22 |
合計ジャッジ時間 | 34,105 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
11,136 KB |
testcase_01 | AC | 33 ms
11,008 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 4,212 ms
11,776 KB |
testcase_04 | AC | 2,370 ms
11,392 KB |
testcase_05 | AC | 1,571 ms
11,392 KB |
testcase_06 | AC | 555 ms
11,264 KB |
testcase_07 | AC | 39 ms
11,008 KB |
testcase_08 | AC | 734 ms
11,136 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 31 ms
11,136 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 4,834 ms
11,648 KB |
testcase_16 | AC | 112 ms
11,136 KB |
testcase_17 | AC | 3,117 ms
11,648 KB |
testcase_18 | AC | 2,679 ms
11,520 KB |
testcase_19 | AC | 77 ms
11,264 KB |
ソースコード
#!/usr/bin/env python3 import array import collections import copy import heapq INF = 10 ** 9 State = collections.namedtuple("State", "level battles index") def rotations(iterable, tuplify=True): d = collections.deque(iterable) n = len(d) for _ in range(n): d.rotate() y = copy.copy(d) yield tuple(y) if tuplify else y def compute_min(friend_levels, enemy_levels): fs = friend_levels answer = INF for es in rotations(enemy_levels, False): pq = [State(f, 0, i) for i, f in enumerate(fs)] heapq.heapify(pq) while es: state = heapq.heappop(pq) e = es.popleft() new_level = state.level + e // 2 new_battles = state.battles + 1 heapq.heappush(pq, State(new_level, new_battles, state.index)) answer = min(answer, max(s.battles for s in pq)) return answer def main(): _ = input() friend_levels = array.array("I", map(int, input().split())) enemy_levels = array.array("I", map(int, input().split())) print(compute_min(friend_levels, enemy_levels)) if __name__ == '__main__': main()