結果

問題 No.2495 Three Sets
ユーザー prin_kemkemprin_kemkem
提出日時 2023-10-06 23:30:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,326 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,892 KB
実行使用メモリ 122,556 KB
最終ジャッジ日時 2024-07-26 17:09:18
合計ジャッジ時間 3,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
80,560 KB
testcase_01 AC 84 ms
80,744 KB
testcase_02 AC 86 ms
80,732 KB
testcase_03 AC 89 ms
80,636 KB
testcase_04 AC 84 ms
80,536 KB
testcase_05 WA -
testcase_06 AC 88 ms
80,276 KB
testcase_07 AC 89 ms
80,616 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 162 ms
97,956 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 225 ms
122,556 KB
testcase_17 AC 219 ms
122,292 KB
testcase_18 AC 85 ms
80,688 KB
testcase_19 AC 171 ms
119,416 KB
testcase_20 AC 165 ms
121,580 KB
権限があれば一括ダウンロードができます

ソースコード

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(i):
    def g(j):
        def h(k):
            sa = SA[i]
            sb = SB[j]
            sc = SC[k]
            return sa*j + sb*k + sc*i
        return findMax(h, 0, NC)
    return findMax(g, 0, NA)

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 = findMax(f, 0, NA)
print(ans)
0