結果

問題 No.1929 Exponential Sequence
ユーザー 👑 KazunKazun
提出日時 2022-05-06 23:39:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 1,196 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 139,508 KB
最終ジャッジ日時 2024-09-14 03:54:32
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 AC 612 ms
137,268 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 66 ms
67,072 KB
testcase_16 AC 54 ms
61,696 KB
testcase_17 AC 41 ms
52,096 KB
testcase_18 AC 41 ms
52,096 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 41 ms
52,480 KB
testcase_21 AC 624 ms
139,508 KB
testcase_22 AC 421 ms
109,652 KB
testcase_23 AC 621 ms
137,476 KB
testcase_24 AC 341 ms
96,380 KB
testcase_25 AC 611 ms
132,848 KB
testcase_26 AC 632 ms
137,260 KB
testcase_27 AC 41 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Binary_Search_Small_Count(A, x, equal=False, sort=False):
    """二分探索によって, x 未満の要素の個数を調べる.

    A: リスト
    x: 調べる要素
    sort: ソートをする必要があるかどうか (True で必要)
    equal: True のときは x "未満" が x "以下" になる
    """
    if sort:
        A.sort()

    if len(A)==0 or A[0]>x or ((not equal) and A[0]==x):
        return 0

    L,R=0,len(A)
    while R-L>1:
        C=L+(R-L)//2
        if A[C]<x or (equal and A[C]==x):
            L=C
        else:
            R=C

    return L+1
#==================================================
def f(B):
    X=[]
    I=[]
    for b in B:
        t=0
        while pow(b,t+1)<=S:
            t+=1
        I.append(range(1,t+1))

    for P in product(*I):
        s=0
        for b,p in zip(B,P):
            s+=pow(b,p)
        if s<=S:
            X.append(s)
    X.sort()
    return X

#==================================================
from itertools import product

N,S=map(int,input().split())
A=list(map(int,input().split()))

B=A[:N//2]; C=A[N//2:]

X=f(B)
Y=f(C)

ans=0
for x in X:
    ans+=Binary_Search_Small_Count(Y, S-x, True)

print(ans)
0