結果

問題 No.9 モンスターのレベル上げ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-01-15 12:39:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,955 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-23 23:52:15
合計ジャッジ時間 41,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 34 ms
11,008 KB
testcase_02 AC 4,179 ms
11,392 KB
testcase_03 AC 3,260 ms
11,264 KB
testcase_04 AC 1,771 ms
11,136 KB
testcase_05 AC 1,188 ms
11,264 KB
testcase_06 AC 434 ms
11,008 KB
testcase_07 AC 39 ms
10,880 KB
testcase_08 AC 570 ms
11,136 KB
testcase_09 AC 4,052 ms
11,392 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 3,941 ms
11,392 KB
testcase_12 AC 4,955 ms
11,392 KB
testcase_13 AC 3,949 ms
11,264 KB
testcase_14 AC 4,084 ms
11,264 KB
testcase_15 AC 3,709 ms
11,264 KB
testcase_16 AC 97 ms
11,008 KB
testcase_17 AC 2,418 ms
11,136 KB
testcase_18 AC 2,025 ms
11,136 KB
testcase_19 AC 71 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy, heapq

if __name__ == '__main__':
    n = int(input())
    abstract_ally = [(int(a), 0) for a in input().split()]
    enemy = [int(b) for b in input().split()]

    heapq.heapify(abstract_ally)

    answer = float('inf')
    for start in range(n):
        ally = copy.copy(abstract_ally)

        max_cnt = 0
        for diff in range(n):
            level, cnt = heapq.heappop(ally)
            i = (start + diff) % n

            heapq.heappush(ally, (level + enemy[i] // 2, cnt + 1))
            max_cnt = max(max_cnt, cnt + 1)

        answer = min(answer, max_cnt)
    
    print(answer)
0