結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | 双六 |
提出日時 | 2020-07-26 00:09:22 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 525 ms |
コンパイル使用メモリ | 82,360 KB |
実行使用メモリ | 204,832 KB |
最終ジャッジ日時 | 2024-06-27 18:29:16 |
合計ジャッジ時間 | 32,579 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
60,032 KB |
testcase_01 | AC | 49 ms
60,416 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 3,977 ms
163,456 KB |
testcase_04 | AC | 2,197 ms
115,456 KB |
testcase_05 | AC | 1,511 ms
97,536 KB |
testcase_06 | AC | 604 ms
82,048 KB |
testcase_07 | AC | 125 ms
78,128 KB |
testcase_08 | AC | 760 ms
84,480 KB |
testcase_09 | AC | 4,899 ms
192,020 KB |
testcase_10 | AC | 48 ms
60,288 KB |
testcase_11 | AC | 4,681 ms
191,616 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 4,515 ms
204,832 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 4,611 ms
177,304 KB |
testcase_16 | AC | 204 ms
78,624 KB |
testcase_17 | AC | 2,924 ms
134,464 KB |
testcase_18 | AC | 2,467 ms
118,648 KB |
testcase_19 | AC | 167 ms
78,380 KB |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") from heapq import heappop, heappush import copy def getlist(): return list(map(int, input().split())) #処理内容 def main(): N = int(input()) A = list(sorted(getlist())) B = getlist() # [レベル、戦闘回数] Q = [] for i in range(N): heappush(Q, [A[i], 0]) ans = INF for i in range(N): start = i Q2 = copy.deepcopy(Q) for j in range(N): lv, cnt = heappop(Q2) lv += int((B[(start + j) % N]) // 2) cnt += 1 heappush(Q2, [lv, cnt]) val = 0 for j in range(N): val = max(val, Q2[j][1]) ans = min(ans, val) print(ans) if __name__ == '__main__': main()