結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー 👑 KazunKazun
提出日時 2021-01-22 02:04:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 906 ms / 2,000 ms
コード長 3,328 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 87,116 KB
実行使用メモリ 182,812 KB
最終ジャッジ日時 2023-08-27 16:18:05
合計ジャッジ時間 32,399 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
71,196 KB
testcase_01 AC 76 ms
71,196 KB
testcase_02 AC 75 ms
71,284 KB
testcase_03 AC 76 ms
71,200 KB
testcase_04 AC 77 ms
71,056 KB
testcase_05 AC 76 ms
71,548 KB
testcase_06 AC 76 ms
71,052 KB
testcase_07 AC 76 ms
71,552 KB
testcase_08 AC 95 ms
76,212 KB
testcase_09 AC 90 ms
76,268 KB
testcase_10 AC 98 ms
76,132 KB
testcase_11 AC 97 ms
75,988 KB
testcase_12 AC 94 ms
76,112 KB
testcase_13 AC 95 ms
76,552 KB
testcase_14 AC 91 ms
75,740 KB
testcase_15 AC 102 ms
76,344 KB
testcase_16 AC 99 ms
76,140 KB
testcase_17 AC 94 ms
75,868 KB
testcase_18 AC 140 ms
78,932 KB
testcase_19 AC 121 ms
77,416 KB
testcase_20 AC 134 ms
78,092 KB
testcase_21 AC 118 ms
78,560 KB
testcase_22 AC 126 ms
78,548 KB
testcase_23 AC 141 ms
79,636 KB
testcase_24 AC 143 ms
80,260 KB
testcase_25 AC 140 ms
79,768 KB
testcase_26 AC 143 ms
79,460 KB
testcase_27 AC 122 ms
78,020 KB
testcase_28 AC 410 ms
110,544 KB
testcase_29 AC 354 ms
104,488 KB
testcase_30 AC 345 ms
99,944 KB
testcase_31 AC 435 ms
110,300 KB
testcase_32 AC 557 ms
134,140 KB
testcase_33 AC 335 ms
98,788 KB
testcase_34 AC 456 ms
120,392 KB
testcase_35 AC 448 ms
113,944 KB
testcase_36 AC 690 ms
137,444 KB
testcase_37 AC 262 ms
98,396 KB
testcase_38 AC 356 ms
109,620 KB
testcase_39 AC 293 ms
95,148 KB
testcase_40 AC 320 ms
103,108 KB
testcase_41 AC 476 ms
115,136 KB
testcase_42 AC 675 ms
135,748 KB
testcase_43 AC 435 ms
111,000 KB
testcase_44 AC 530 ms
117,796 KB
testcase_45 AC 381 ms
111,996 KB
testcase_46 AC 540 ms
124,620 KB
testcase_47 AC 334 ms
99,180 KB
testcase_48 AC 646 ms
182,720 KB
testcase_49 AC 426 ms
182,812 KB
testcase_50 AC 631 ms
182,812 KB
testcase_51 AC 519 ms
182,752 KB
testcase_52 AC 641 ms
182,784 KB
testcase_53 AC 906 ms
156,600 KB
testcase_54 AC 894 ms
156,644 KB
testcase_55 AC 886 ms
156,908 KB
testcase_56 AC 891 ms
156,872 KB
testcase_57 AC 717 ms
156,728 KB
testcase_58 AC 612 ms
153,988 KB
testcase_59 AC 604 ms
153,804 KB
testcase_60 AC 500 ms
153,616 KB
testcase_61 AC 499 ms
153,772 KB
testcase_62 AC 501 ms
153,760 KB
testcase_63 AC 138 ms
127,084 KB
testcase_64 AC 134 ms
127,004 KB
testcase_65 AC 136 ms
126,764 KB
testcase_66 AC 134 ms
127,076 KB
testcase_67 AC 134 ms
127,212 KB
testcase_68 AC 77 ms
71,420 KB
testcase_69 AC 76 ms
71,320 KB
testcase_70 AC 77 ms
71,228 KB
testcase_71 AC 76 ms
71,152 KB
testcase_72 AC 77 ms
71,144 KB
testcase_73 AC 75 ms
71,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def General_Binary_Increase_Search(L,R,cond,Integer=True,ep=1/(1<<20)):
    """条件式が単調増加であるとき,一般的な二部探索を行う.
    L:解の下限
    R:解の上限
    cond:条件(1変数関数,広義単調減少 or 広義単調減少を満たす)
    Integer:解を整数に制限するか?
    ep:Integer=Falseのとき,解の許容する誤差
    """
    if not(cond(R)):
        return False

    if Integer:
        R+=1
        while R-L>1:
            C=L+(R-L)//2
            if cond(C):
                R=C
            else:
                L=C
        return R
    else:
        while (R-L)>=ep:
            C=L+(R-L)/2
            if cond(C):
                R=C
            else:
                L=C
        return R
#================================================
def f(x): #負の時の判定
    Z=0

    I=0
    for u in U_pos:
        while (I<V_negative and u*V_neg[I]<=x):
            I+=1
        Z+=I

    I=0
    for v in V_pos:
        while (I<U_negative and v*U_neg[I]<=x):
            I+=1
        Z+=I

    return Z

def g(x): #正の時の判定
    Z=0

    I=V_positive
    for u in U_pos:
        while (I>0 and u*V_pos[I-1]>x):
            I-=1
        Z+=I

    I=0
    for v in V_neg:
        while (I<U_negative and v*U_neg[-(I+1)]<=x):
            I+=1
        Z+=I

    return Z
#================================================
# pq=x なる p in G,q in H を求める.
def h(x,G,H):
    if x==0:
        if 0 in G:
            return (0,H[0])
        else:
            return (G[0],0)

    H=set(H)
    for g in G:
        if g==0:
            continue

        if (x%g==0) and (x//g in H):
            return (g,x//g)
    return None
#================================================
#入力
import sys
input=sys.stdin.readline

K,L,M,N,S=map(int,input().split())

A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))
D=list(map(int,input().split()))
#================================================
# (A,B),(C,D)の2つに分けて考える.
U=[a*b for a in A for b in B]
U.sort()
V=[c*d for c in C for d in D]
V.sort()

U_pos=[u for u in U if u>0]
U_neg=[u for u in U if u<0]

V_pos=[v for v in V if v>0]
V_neg=[v for v in V if v<0]

U_positive=len(U_pos)
U_negative=len(U_neg)
U_zero=K*L-(U_positive+U_negative)

V_positive=len(V_pos)
V_negative=len(V_neg)
V_zero=M*N-(V_positive+V_negative)
#================================================
# Eの正,ゼロ,負の個数を求める
E_positive=U_positive*V_positive+U_negative*V_negative
E_negative=U_positive*V_negative+U_negative*V_positive
E_zero=K*L*M*N-(E_positive+E_negative)
#================================================
# Jを求める.
U_abs_max=abs(max(U,key=lambda u:abs(u)))
V_abs_max=abs(max(V,key=lambda v:abs(v)))
Abs_max=U_abs_max*V_abs_max+1

if S<=E_negative: #負確定
    Ans=General_Binary_Increase_Search(-Abs_max,0,lambda x:f(x)>=S)
elif E_negative+1<=S<=E_negative+E_zero: #ゼロ確定
    Ans=0
else: #正確定
    Ans=General_Binary_Increase_Search(0,Abs_max,lambda x:g(x)>=S-(E_negative+E_zero))
#================================================
# T=abcd なる a,b,c,dを求める.
alpha,beta=h(Ans,U,V)
a,b=h(alpha,A,B)
c,d=h(beta ,C,D)
#================================================
#出力
print(Ans)
print(a,b,c,d)
0