結果

問題 No.457 (^^*)
ユーザー 👑 KazunKazun
提出日時 2021-02-07 19:27:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 1,950 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,604 KB
最終ジャッジ日時 2024-07-04 12:25:49
合計ジャッジ時間 2,119 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,804 KB
testcase_01 AC 38 ms
52,404 KB
testcase_02 AC 39 ms
52,472 KB
testcase_03 AC 38 ms
52,392 KB
testcase_04 AC 38 ms
53,548 KB
testcase_05 AC 39 ms
53,044 KB
testcase_06 AC 39 ms
52,924 KB
testcase_07 AC 47 ms
61,428 KB
testcase_08 AC 55 ms
64,448 KB
testcase_09 AC 62 ms
70,248 KB
testcase_10 AC 82 ms
76,068 KB
testcase_11 AC 96 ms
76,496 KB
testcase_12 AC 81 ms
76,432 KB
testcase_13 AC 81 ms
76,244 KB
testcase_14 AC 43 ms
60,560 KB
testcase_15 AC 84 ms
76,604 KB
testcase_16 AC 84 ms
76,128 KB
testcase_17 AC 43 ms
60,244 KB
testcase_18 AC 38 ms
53,132 KB
testcase_19 AC 39 ms
52,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Binary_Search_Big_Count(A,x,equal=False,sort=False):
    """2分探索によって,xを超える要素の個数を調べる.

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

    if sort:
        A.sort()

    if A[-1]<x or ((not equal) and A[-1]==x):
        return 0

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

def Binary_Search_High_Value(A,x,equal=False,sort=False):
    """Aのxを超える要素の中で最小のものを出力する.

    A:リスト
    x:調べる要素
    sort:ソートをする必要があるかどうか(Trueで必要)
    equal:Trueのときはx"を超える"がx"以上"になる
    ※全ての要素がx以上(超える)場合はNoneが返される.
    """

    if sort:
        A.sort()

    if A[-1]<x or ((not equal) and A[-1]==x):
        return None

    L,R=-1,len(A)-1
    while R-L>1:
        C=L+(R-L)//2
        if A[C]>x or (equal and A[C]==x):
            R=C
        else:
            L=C
    K=len(A)-R
    return A[-K]
#================================================
S=input()
A=[]
B=[-1]
C=[-1]
D=[-1]
for i,s in enumerate(S):
    if s=="(":
        A.append(i)
    elif s=="^":
        B.append(i)
    elif s=="*":
        C.append(i)
    else:
        D.append(i)

X=0
for a in A:
    p=a
    p=Binary_Search_High_Value(B,p)
    if p!=None:
        p=Binary_Search_High_Value(B,p)
    if p!=None:
        p=Binary_Search_High_Value(C,p)
    if p!=None:
        X+=Binary_Search_Big_Count(D,p)

Y=0
for a in A:
    q=a
    q=Binary_Search_High_Value(C,q)
    if q!=None:
        q=Binary_Search_High_Value(B,q)
    if q!=None:
        q=Binary_Search_High_Value(B,q)
    if q!=None:
        Y+=Binary_Search_Big_Count(D,q)

print(X,Y)
0