結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
17,864 KB
testcase_01 AC 11 ms
17,792 KB
testcase_02 AC 12 ms
17,792 KB
testcase_03 AC 11 ms
17,792 KB
testcase_04 AC 13 ms
17,920 KB
testcase_05 AC 11 ms
17,860 KB
testcase_06 AC 11 ms
17,988 KB
testcase_07 AC 14 ms
17,860 KB
testcase_08 AC 12 ms
17,920 KB
testcase_09 AC 14 ms
17,860 KB
testcase_10 AC 12 ms
17,792 KB
testcase_11 AC 16 ms
17,732 KB
testcase_12 AC 168 ms
17,860 KB
testcase_13 AC 272 ms
17,792 KB
testcase_14 AC 202 ms
17,920 KB
testcase_15 AC 264 ms
17,732 KB
testcase_16 AC 93 ms
17,792 KB
testcase_17 AC 344 ms
17,792 KB
testcase_18 AC 430 ms
17,864 KB
testcase_19 AC 38 ms
17,920 KB
testcase_20 AC 342 ms
17,920 KB
testcase_21 AC 528 ms
17,860 KB
testcase_22 AC 58 ms
17,920 KB
testcase_23 AC 12 ms
17,860 KB
testcase_24 AC 11 ms
17,732 KB
testcase_25 AC 11 ms
17,864 KB
testcase_26 AC 11 ms
17,860 KB
testcase_27 AC 457 ms
17,860 KB
testcase_28 AC 376 ms
17,792 KB
testcase_29 AC 59 ms
17,792 KB
testcase_30 AC 425 ms
17,920 KB
testcase_31 AC 14 ms
17,792 KB
testcase_32 AC 105 ms
17,920 KB
testcase_33 AC 184 ms
17,920 KB
testcase_34 AC 237 ms
17,792 KB
testcase_35 AC 9 ms
17,920 KB
testcase_36 AC 45 ms
17,860 KB
testcase_37 AC 24 ms
17,920 KB
testcase_38 AC 60 ms
17,860 KB
testcase_39 AC 206 ms
17,792 KB
testcase_40 AC 51 ms
17,856 KB
testcase_41 AC 339 ms
17,792 KB
testcase_42 WA -
testcase_43 AC 324 ms
18,760 KB
testcase_44 AC 372 ms
18,756 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(2e14);
    if(t<y){
        cout<<"-1\n";
        return 0;
    }
    long long l=0,r=2e14;
    while(r-l>1){
        long long mid=(l+r)/2;
        t=ev(mid);
        if(t<y)l=mid;
        else r=mid;
    }
    cout<<(ev(r)==y?r:-1)<<endl;
}
0