結果

問題 No.9 モンスターのレベル上げ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 09:06:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,158 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 84,420 KB
最終ジャッジ日時 2024-06-24 04:44:49
合計ジャッジ時間 12,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
57,392 KB
testcase_01 AC 56 ms
56,056 KB
testcase_02 AC 1,158 ms
83,960 KB
testcase_03 AC 1,013 ms
82,816 KB
testcase_04 AC 613 ms
79,556 KB
testcase_05 AC 427 ms
78,816 KB
testcase_06 AC 245 ms
77,928 KB
testcase_07 AC 107 ms
77,184 KB
testcase_08 AC 263 ms
78,176 KB
testcase_09 AC 1,126 ms
84,096 KB
testcase_10 AC 47 ms
55,424 KB
testcase_11 AC 801 ms
82,348 KB
testcase_12 AC 910 ms
78,720 KB
testcase_13 AC 804 ms
81,656 KB
testcase_14 AC 1,158 ms
84,420 KB
testcase_15 AC 1,001 ms
83,352 KB
testcase_16 AC 142 ms
76,940 KB
testcase_17 AC 729 ms
80,636 KB
testcase_18 AC 625 ms
79,980 KB
testcase_19 AC 116 ms
77,152 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()))
B += B
Y = [(b,0) for b in A]
heapify(Y)
ans = N
for i in range(N):
    
    h = Y[:]
    tans = 0
    for j in range(N):
        
        a = B[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