結果

問題 No.9 モンスターのレベル上げ
ユーザー qibqib
提出日時 2023-03-20 00:07:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,119 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,572 KB
最終ジャッジ日時 2024-09-18 13:55:11
合計ジャッジ時間 12,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,444 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 1,098 ms
79,572 KB
testcase_03 AC 880 ms
78,432 KB
testcase_04 AC 530 ms
77,100 KB
testcase_05 AC 396 ms
76,780 KB
testcase_06 AC 222 ms
76,232 KB
testcase_07 AC 113 ms
76,228 KB
testcase_08 AC 258 ms
76,676 KB
testcase_09 AC 1,119 ms
79,324 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 960 ms
79,176 KB
testcase_12 AC 1,001 ms
79,508 KB
testcase_13 AC 681 ms
77,796 KB
testcase_14 AC 1,092 ms
79,452 KB
testcase_15 AC 1,003 ms
78,688 KB
testcase_16 AC 127 ms
76,100 KB
testcase_17 AC 694 ms
78,136 KB
testcase_18 AC 583 ms
77,324 KB
testcase_19 AC 128 ms
75,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF = 10 ** 5

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

ans = 1 << 60
for src in range(n):
  hp = []
  for i in range(n):
    heapq.heappush(hp, INF * a[i])

  for i in range(n):
    x = heapq.heappop(hp)
    l, c = x // INF, x % INF
    l += b[(i + src) % n] // 2
    c += 1
    heapq.heappush(hp, l * INF + c)

  cnt = 0
  for x in hp:
    c = x % INF
    cnt = max(cnt, c)

  ans = min(ans, cnt)

print(ans)
0