結果

問題 No.2927 Reverse Polish Equation
ユーザー cled0328cled0328
提出日時 2024-10-12 16:14:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,197 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 207,240 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-16 00:25:54
合計ジャッジ時間 10,009 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
17,792 KB
testcase_01 AC 11 ms
17,792 KB
testcase_02 AC 11 ms
17,792 KB
testcase_03 AC 11 ms
17,792 KB
testcase_04 AC 12 ms
17,792 KB
testcase_05 AC 12 ms
17,792 KB
testcase_06 AC 13 ms
17,664 KB
testcase_07 AC 14 ms
17,792 KB
testcase_08 AC 13 ms
17,920 KB
testcase_09 AC 16 ms
17,792 KB
testcase_10 AC 12 ms
17,664 KB
testcase_11 AC 15 ms
17,792 KB
testcase_12 AC 162 ms
17,792 KB
testcase_13 AC 263 ms
17,792 KB
testcase_14 AC 194 ms
17,920 KB
testcase_15 AC 254 ms
17,792 KB
testcase_16 AC 92 ms
17,792 KB
testcase_17 AC 339 ms
17,920 KB
testcase_18 AC 420 ms
17,792 KB
testcase_19 AC 37 ms
17,920 KB
testcase_20 AC 329 ms
17,920 KB
testcase_21 AC 514 ms
17,792 KB
testcase_22 AC 61 ms
17,792 KB
testcase_23 AC 12 ms
17,920 KB
testcase_24 AC 13 ms
17,792 KB
testcase_25 AC 11 ms
17,920 KB
testcase_26 AC 11 ms
17,792 KB
testcase_27 AC 445 ms
17,792 KB
testcase_28 AC 374 ms
17,792 KB
testcase_29 AC 59 ms
17,792 KB
testcase_30 AC 424 ms
17,792 KB
testcase_31 AC 15 ms
17,920 KB
testcase_32 AC 103 ms
17,920 KB
testcase_33 AC 186 ms
17,920 KB
testcase_34 AC 232 ms
17,920 KB
testcase_35 AC 13 ms
17,792 KB
testcase_36 AC 45 ms
17,792 KB
testcase_37 AC 27 ms
17,664 KB
testcase_38 AC 61 ms
17,792 KB
testcase_39 AC 201 ms
17,792 KB
testcase_40 AC 50 ms
17,920 KB
testcase_41 AC 343 ms
17,920 KB
testcase_42 WA -
testcase_43 AC 325 ms
18,688 KB
testcase_44 AC 367 ms
18,688 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int q;
long long y;
vector<int> eg[1<<18];
string s[1<<18];
long long ev(long long x){
    stack<long long> st;
    for(int i=0;i<q;i++){
        if(s[i]=="+"){
            long long a=st.top();st.pop();
            long long b=st.top();st.pop();
            st.push(a+b);
        }else if(s[i]=="min"){
            long long a=st.top();st.pop();
            long long b=st.top();st.pop();
            st.push(min(a,b));
        }else if(s[i]=="max"){
            long long a=st.top();st.pop();
            long long b=st.top();st.pop();
            st.push(max(a,b));
        }else if(s[i]=="X"){
            st.push(x);
        }else{
            st.push(stoll(s[i]));
        }
    }
    return st.top();
}
int main(){
    cin>>q>>y;
    for(int i=0;i<q;i++)cin>>s[i];
    long long t=ev(0);
    if(t>y){
        cout<<"-1\n";
        return 0;
    }
    if(t==y){
        cout<<"0\n";
        return 0;
    }
    t=ev(1e14);
    if(t<y){
        cout<<"-1\n";
        return 0;
    }
    long long l=0,r=1e14;
    while(r-l>1){
        long long mid=(l+r)/2;
        if(ev(mid)<y)l=mid;
        else r=mid;
    }
    cout<<(ev(r)==y?r:-1)<<endl;
}
0