結果

問題 No.2927 Reverse Polish Equation
ユーザー mkawa2mkawa2
提出日時 2024-10-12 15:50:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 129,660 KB
最終ジャッジ日時 2024-10-16 00:24:15
合計ジャッジ時間 12,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,480 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 46 ms
52,352 KB
testcase_03 AC 44 ms
52,480 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 44 ms
52,736 KB
testcase_06 AC 44 ms
52,736 KB
testcase_07 AC 70 ms
65,664 KB
testcase_08 AC 74 ms
67,072 KB
testcase_09 AC 70 ms
66,688 KB
testcase_10 AC 66 ms
64,256 KB
testcase_11 AC 75 ms
68,224 KB
testcase_12 AC 238 ms
81,024 KB
testcase_13 AC 335 ms
85,760 KB
testcase_14 AC 263 ms
82,304 KB
testcase_15 AC 335 ms
85,768 KB
testcase_16 AC 169 ms
77,952 KB
testcase_17 AC 408 ms
89,344 KB
testcase_18 AC 495 ms
92,800 KB
testcase_19 AC 115 ms
76,288 KB
testcase_20 AC 403 ms
89,136 KB
testcase_21 AC 575 ms
97,684 KB
testcase_22 AC 135 ms
76,688 KB
testcase_23 AC 44 ms
52,352 KB
testcase_24 AC 43 ms
52,096 KB
testcase_25 AC 45 ms
52,352 KB
testcase_26 AC 44 ms
51,968 KB
testcase_27 AC 513 ms
93,568 KB
testcase_28 AC 438 ms
90,496 KB
testcase_29 AC 136 ms
76,544 KB
testcase_30 AC 491 ms
93,220 KB
testcase_31 AC 119 ms
76,204 KB
testcase_32 AC 180 ms
78,848 KB
testcase_33 AC 264 ms
82,208 KB
testcase_34 AC 308 ms
84,388 KB
testcase_35 AC 67 ms
65,152 KB
testcase_36 AC 488 ms
93,056 KB
testcase_37 AC 224 ms
81,152 KB
testcase_38 AC 571 ms
95,604 KB
testcase_39 AC 280 ms
83,584 KB
testcase_40 AC 484 ms
92,800 KB
testcase_41 AC 411 ms
89,216 KB
testcase_42 AC 419 ms
125,792 KB
testcase_43 AC 461 ms
124,728 KB
testcase_44 AC 485 ms
124,732 KB
testcase_45 AC 388 ms
129,660 KB
権限があれば一括ダウンロードができます

ソースコード

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**15,True)
if f(ans)==y:
    print(ans)
else:
    print(-1)
0