結果

問題 No.2927 Reverse Polish Equation
ユーザー mkawa2mkawa2
提出日時 2024-10-12 15:49:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,474 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 128,472 KB
最終ジャッジ日時 2024-10-16 00:24:15
合計ジャッジ時間 9,738 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 65 ms
65,408 KB
testcase_08 AC 71 ms
66,560 KB
testcase_09 AC 67 ms
65,408 KB
testcase_10 AC 57 ms
62,592 KB
testcase_11 AC 69 ms
66,816 KB
testcase_12 AC 178 ms
81,024 KB
testcase_13 AC 240 ms
85,504 KB
testcase_14 AC 194 ms
81,792 KB
testcase_15 AC 237 ms
85,376 KB
testcase_16 AC 134 ms
77,696 KB
testcase_17 AC 283 ms
88,704 KB
testcase_18 AC 339 ms
92,800 KB
testcase_19 AC 99 ms
74,368 KB
testcase_20 AC 287 ms
88,704 KB
testcase_21 AC 389 ms
97,280 KB
testcase_22 AC 114 ms
76,160 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 41 ms
52,352 KB
testcase_25 AC 41 ms
52,352 KB
testcase_26 AC 41 ms
51,968 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 104 ms
76,288 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 333 ms
92,672 KB
testcase_37 AC 171 ms
80,512 KB
testcase_38 AC 387 ms
95,616 KB
testcase_39 AC 205 ms
83,200 KB
testcase_40 AC 334 ms
92,800 KB
testcase_41 AC 287 ms
88,704 KB
testcase_42 AC 271 ms
121,036 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

def binary_search(l, r, minimize):
    if minimize: l -= 1
    else: r += 1
    while l+1 < r:
        m = (l+r)//2
        if ok(m) ^ minimize: l = m
        else: r = m
    if minimize: return r
    return l

def f(m):
    st=[]
    for s in ss:
        if s=="+" or s=="min" or s=="max":
            a=st.pop()
            b=st.pop()
            if s=="+":st.append(a+b)
            if s=="min":st.append(min(a,b))
            if s=="max":st.append(max(a,b))
        elif s=="X":
            st.append(m)
        else:
            st.append(int(s))
    return st[0]

def ok(m):
    return f(m)>=y

n,y=LI()
ss=SI().split()
ans=binary_search(0,10**9,True)
if f(ans)==y:
    print(ans)
else:
    print(-1)
0