結果

問題 No.9 モンスターのレベル上げ
ユーザー rlangevinrlangevin
提出日時 2023-11-23 22:34:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,238 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-09-26 08:21:27
合計ジャッジ時間 13,817 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,608 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 1,157 ms
79,364 KB
testcase_03 AC 976 ms
78,720 KB
testcase_04 AC 572 ms
77,036 KB
testcase_05 AC 421 ms
76,904 KB
testcase_06 AC 237 ms
76,492 KB
testcase_07 AC 121 ms
76,848 KB
testcase_08 AC 272 ms
76,648 KB
testcase_09 AC 1,189 ms
79,748 KB
testcase_10 AC 49 ms
52,096 KB
testcase_11 AC 1,085 ms
79,732 KB
testcase_12 AC 1,238 ms
80,256 KB
testcase_13 AC 767 ms
77,824 KB
testcase_14 AC 1,224 ms
79,580 KB
testcase_15 AC 1,126 ms
78,848 KB
testcase_16 AC 146 ms
76,136 KB
testcase_17 AC 766 ms
78,228 KB
testcase_18 AC 650 ms
77,836 KB
testcase_19 AC 143 ms
76,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

def f(x, y):
    return x * (N + 1) + y
def g(v):
    return v // (N + 1), v % (N + 1)

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
B = B + B
ans = 10 ** 18
for i in range(N):
    H = []
    for j in range(N):
        heappush(H, f(A[j], 0))
        
    for j in range(i, i + N):
        nx, ny = g(heappop(H))
        ny += 1
        nx += B[j]//2
        heappush(H, f(nx, ny))
    temp = 0
    for v in H:
        x, y = g(v)
        temp = max(temp, y)
    ans = min(ans, temp)
    
print(ans)
0