結果

問題 No.2495 Three Sets
ユーザー prin_kemkemprin_kemkem
提出日時 2023-10-06 23:28:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,302 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 129,676 KB
最終ジャッジ日時 2024-07-26 17:08:15
合計ジャッジ時間 11,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
87,440 KB
testcase_01 AC 105 ms
80,380 KB
testcase_02 AC 101 ms
80,840 KB
testcase_03 AC 102 ms
80,752 KB
testcase_04 AC 97 ms
80,460 KB
testcase_05 AC 95 ms
80,276 KB
testcase_06 AC 90 ms
80,420 KB
testcase_07 AC 91 ms
80,500 KB
testcase_08 AC 89 ms
80,484 KB
testcase_09 AC 115 ms
82,268 KB
testcase_10 AC 128 ms
82,052 KB
testcase_11 AC 154 ms
82,420 KB
testcase_12 AC 162 ms
82,316 KB
testcase_13 AC 893 ms
97,864 KB
testcase_14 AC 2,411 ms
113,348 KB
testcase_15 AC 862 ms
103,916 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
from heapq import heapify, heappop, heappush
import math
import bisect
from pprint import pprint
from random import randint
import sys
# sys.setrecursionlimit(700000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################

def f(k):
    sa = SA[i]
    sb = SB[j]
    sc = SC[k]
    return sa*j + sb*k + sc*i

def f(j):
    def g(k):
        sa = SA[i]
        sb = SB[j]
        sc = SC[k]
        return sa*j + sb*k + sc*i
    return findMax(g, 0, NC)

def findMax(f, l, r):
    while r-l >= 3:
        c1 = l+(r-l)//3
        c2 = r-(r-l)//3
        if f(c1) > f(c2): r = c2
        else: l = c1
    return max(f(x) for x in range(l, r+1))

NA, NB, NC = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = list(map(int, input().split()))
A.sort(reverse=True)
B.sort(reverse=True)
C.sort(reverse=True)

SA = [0]+list(accumulate(A))
SB = [0]+list(accumulate(B))
SC = [0]+list(accumulate(C))

ans = 0
for i in range(NA+1):
    ans= max(ans, findMax(f, 0, NB))
print(ans)
0