結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー vwxyzvwxyz
提出日時 2023-12-01 00:13:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 3,130 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 30,744 KB
最終ジャッジ日時 2023-12-01 00:14:05
合計ジャッジ時間 11,875 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,264 KB
testcase_01 AC 36 ms
11,264 KB
testcase_02 AC 37 ms
11,264 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 37 ms
11,264 KB
testcase_07 RE -
testcase_08 AC 56 ms
11,520 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 65 ms
11,520 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 44 ms
11,392 KB
testcase_15 AC 92 ms
11,776 KB
testcase_16 AC 57 ms
11,520 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 299 ms
13,056 KB
testcase_20 AC 865 ms
16,880 KB
testcase_21 AC 244 ms
13,312 KB
testcase_22 AC 330 ms
13,440 KB
testcase_23 RE -
testcase_24 AC 395 ms
14,080 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 432 ms
14,208 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.set_int_max_str_digits(10**9)

def Bisect_Int(ok,ng,is_ok):
    while abs(ok-ng)>1:
        mid=(ok+ng)//2
        if is_ok(mid):
            ok=mid
        else:
            ng=mid
    return ok

K,L,M,N,S=map(int,readline().split())
A=list(map(int,readline().split()))
B=list(map(int,readline().split()))
C=list(map(int,readline().split()))
D=list(map(int,readline().split()))
plus0,minus0,zero0=[],[],0
for a in A:
    for b in B:
        if a*b>0:
            plus0.append(a*b)
        elif a*b<0:
            minus0.append(-a*b)
        else:
            zero0+=1
plus1,minus1,zero1=[],[],0
for c in C:
    for d in D:
        if c*d>0:
            plus1.append(c*d)
        elif c*d<0:
            minus1.append(-c*d)
        else:
            zero1+=1
minus0.sort()
minus1.sort()
plus0.sort()
plus1.sort()
def is_ok(ans):
    cnt=0
    if ans<0:
        for ab in minus0:
            cnt+=len(plus1)-bisect.bisect_left(plus1,(-ans)//ab+1)
        for ab in plus0:
            cnt+=len(plus0)-bisect.bisect_left(minus1,(-ans)//cd+1)
    elif ans==0:
        cnt+=len(plus0)*len(minus1)
        cnt+=len(plus1)*len(minus0)
    else:
        cnt+=len(plus0)*len(minus1)
        cnt+=len(plus1)*len(minus0)
        cnt+=zero0*(len(plus1)+len(minus1))+zero1*(len(plus0)+len(minus0))+zero0*zero1
        for ab in minus0:
            cnt+=bisect.bisect_right(minus1,(ans-1)//ab)
        for ab in plus0:
            cnt+=bisect.bisect_right(plus1,(ans-1)//ab)
    return cnt<S
inf=1<<60
ans=Bisect_Int(-inf,inf,is_ok)
if ans==0:
    for kk in range(K):
        if A[kk]==0:
            k,l,m,n=kk,0,0,0
            break
    else:
        for ll in range(L):
            if B[ll]==0:
                k,l,m,n=0,ll,0,0
                break
        else:
            for mm in range(M):
                if C[mm]==0:
                    k,l,m,n=0,0,mm,0
                    break
            else:
                for nn in range(N):
                    if D[nn]==0:
                        k,l,m,n=0,0,0,nn
else:
    dct={}
    for k in range(K):
        for l in range(L):
            dct[A[k]*B[l]]=(k,l)
    for m in range(M):
        for n in range(N):
            cd=C[m]*D[n]
            if cd and ans%cd==0 and ans//cd in dct:
                k,l=dct[ans//cd]
                break
        else:
            continue
        break
print(ans)
print(A[k],B[l],C[m],D[n])
0