結果

問題 No.9 モンスターのレベル上げ
ユーザー 双六双六
提出日時 2020-07-26 00:15:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 954 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-06-27 18:30:32
合計ジャッジ時間 11,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
60,288 KB
testcase_01 AC 56 ms
60,032 KB
testcase_02 AC 954 ms
78,720 KB
testcase_03 AC 789 ms
78,720 KB
testcase_04 AC 478 ms
78,080 KB
testcase_05 AC 356 ms
77,312 KB
testcase_06 AC 212 ms
77,440 KB
testcase_07 AC 112 ms
76,928 KB
testcase_08 AC 234 ms
77,696 KB
testcase_09 AC 943 ms
78,592 KB
testcase_10 AC 55 ms
60,672 KB
testcase_11 AC 743 ms
78,208 KB
testcase_12 AC 801 ms
79,232 KB
testcase_13 AC 663 ms
77,952 KB
testcase_14 AC 919 ms
78,592 KB
testcase_15 AC 828 ms
78,976 KB
testcase_16 AC 127 ms
76,800 KB
testcase_17 AC 601 ms
77,824 KB
testcase_18 AC 538 ms
77,824 KB
testcase_19 AC 123 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()
	# [レベル*10000+戦闘回数]
	Q = []
	for i in range(N):
		heappush(Q, A[i] * 10000)

	ans = INF
	for i in range(N):
		start = i
		Q2 = copy.copy(Q)
		for j in range(N):
			lvcnt = heappop(Q2)
			lvcnt += int((B[(start + j) % N]) // 2) * 10000 + 1
			heappush(Q2, lvcnt)

		# print(Q2)
		val = 0
		for j in range(N):
			val = max(val, Q2[j] % 10000)
		# print(val)

		ans = min(ans, val)

	print(ans)


if __name__ == '__main__':
	main()
0