結果

問題 No.2927 Reverse Polish Equation
ユーザー karinohitokarinohito
提出日時 2024-10-14 15:10:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 208,620 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-16 00:32:23
合計ジャッジ時間 9,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 5 ms
5,248 KB
testcase_12 AC 96 ms
5,248 KB
testcase_13 AC 161 ms
6,400 KB
testcase_14 AC 110 ms
5,632 KB
testcase_15 AC 135 ms
6,272 KB
testcase_16 AC 49 ms
5,248 KB
testcase_17 AC 192 ms
7,112 KB
testcase_18 AC 259 ms
8,192 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 202 ms
7,168 KB
testcase_21 AC 294 ms
9,100 KB
testcase_22 AC 28 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 284 ms
8,448 KB
testcase_28 AC 303 ms
7,620 KB
testcase_29 AC 46 ms
5,248 KB
testcase_30 AC 351 ms
8,192 KB
testcase_31 AC 18 ms
5,248 KB
testcase_32 AC 80 ms
5,248 KB
testcase_33 AC 149 ms
5,248 KB
testcase_34 AC 182 ms
6,016 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 227 ms
8,156 KB
testcase_37 AC 121 ms
5,248 KB
testcase_38 AC 391 ms
9,088 KB
testcase_39 AC 159 ms
5,632 KB
testcase_40 AC 322 ms
8,004 KB
testcase_41 AC 278 ms
7,316 KB
testcase_42 AC 221 ms
11,232 KB
testcase_43 AC 279 ms
11,264 KB
testcase_44 AC 276 ms
11,264 KB
testcase_45 AC 201 ms
10,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using LL=__int128_t;
vector<string> S;
ll N,Y;
LL y,z;
LL f(ll x){
    stack<LL> P;
    for(auto s:S){
        if(s=="X")P.push(x);
        else if(isdigit(s[0]))P.push(stoll(s));
        else{
        	y=P.top();
            P.pop();
            z=P.top();
            P.pop();
            P.push(s=="+"?y+z:s=="min"?min(y,z):max(y,z));
        }
    }
    return P.top();
}
int main() {
	cin>>N>>Y;
    S.resize(N);
    for(auto &s:S)cin>>s;
    ll L=-1,R=Y+1;
    while(R-L>1)(f((R+L)/2)>=LL(Y)?R:L)=(R+L)/2;
    cout<<(f(R)==LL(Y)?R:-1)<<endl;
}
0