結果

問題 No.9 モンスターのレベル上げ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 09:05:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 85,556 KB
最終ジャッジ日時 2024-06-24 04:43:47
合計ジャッジ時間 12,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
56,508 KB
testcase_01 AC 47 ms
56,004 KB
testcase_02 AC 1,138 ms
85,020 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 227 ms
77,840 KB
testcase_07 AC 97 ms
77,004 KB
testcase_08 AC 261 ms
78,068 KB
testcase_09 AC 1,123 ms
84,996 KB
testcase_10 AC 46 ms
55,816 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 728 ms
82,192 KB
testcase_14 AC 1,079 ms
85,072 KB
testcase_15 AC 999 ms
83,828 KB
testcase_16 WA -
testcase_17 AC 685 ms
81,168 KB
testcase_18 AC 594 ms
80,076 KB
testcase_19 AC 117 ms
77,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
A += A
Y = [(b,0) for b in B]
heapify(Y)
ans = N
for i in range(N):
    
    h = Y[:]
    tans = 0
    for j in range(N):
        
        a = A[i+j]
        x,c = heappop(h)
        x += a//2
        c += 1
        tans = max(tans,c)
        heappush(h,(x,c))
    ans = min(ans,tans)
print(ans)
0