結果

問題 No.2927 Reverse Polish Equation
ユーザー cled0328cled0328
提出日時 2024-10-12 16:21:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 1,309 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 206,972 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-10-16 00:26:01
合計ジャッジ時間 11,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
17,792 KB
testcase_01 AC 11 ms
17,664 KB
testcase_02 AC 12 ms
17,732 KB
testcase_03 AC 11 ms
17,920 KB
testcase_04 AC 12 ms
17,792 KB
testcase_05 AC 11 ms
17,792 KB
testcase_06 AC 12 ms
17,792 KB
testcase_07 AC 14 ms
17,664 KB
testcase_08 AC 12 ms
17,792 KB
testcase_09 AC 15 ms
17,792 KB
testcase_10 AC 14 ms
17,664 KB
testcase_11 AC 17 ms
17,664 KB
testcase_12 AC 175 ms
17,792 KB
testcase_13 AC 286 ms
17,920 KB
testcase_14 AC 203 ms
17,920 KB
testcase_15 AC 280 ms
17,920 KB
testcase_16 AC 95 ms
17,664 KB
testcase_17 AC 365 ms
17,792 KB
testcase_18 AC 452 ms
17,920 KB
testcase_19 AC 38 ms
17,792 KB
testcase_20 AC 353 ms
17,792 KB
testcase_21 AC 549 ms
17,792 KB
testcase_22 AC 59 ms
17,792 KB
testcase_23 AC 8 ms
17,664 KB
testcase_24 AC 9 ms
17,792 KB
testcase_25 AC 8 ms
17,732 KB
testcase_26 AC 8 ms
17,664 KB
testcase_27 AC 482 ms
17,792 KB
testcase_28 AC 411 ms
17,792 KB
testcase_29 AC 62 ms
17,792 KB
testcase_30 AC 464 ms
17,664 KB
testcase_31 AC 14 ms
17,792 KB
testcase_32 AC 111 ms
17,860 KB
testcase_33 AC 198 ms
17,792 KB
testcase_34 AC 253 ms
17,732 KB
testcase_35 AC 9 ms
17,792 KB
testcase_36 AC 45 ms
17,920 KB
testcase_37 AC 23 ms
17,792 KB
testcase_38 AC 60 ms
17,792 KB
testcase_39 AC 214 ms
17,792 KB
testcase_40 AC 51 ms
17,792 KB
testcase_41 AC 369 ms
17,860 KB
testcase_42 AC 308 ms
18,560 KB
testcase_43 AC 357 ms
18,688 KB
testcase_44 AC 403 ms
18,688 KB
testcase_45 AC 285 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int q;
unsigned long long y;
vector<int> eg[1<<18];
string s[1<<18];
unsigned long long ev(long long x){
    stack<unsigned long long> st;
    for(int i=0;i<q;i++){
        if(s[i]=="+"){
            unsigned long long a=st.top();st.pop();
            unsigned long long b=st.top();st.pop();
            st.push(a+b);
        }else if(s[i]=="min"){
            unsigned long long a=st.top();st.pop();
            unsigned long long b=st.top();st.pop();
            st.push(min(a,b));
        }else if(s[i]=="max"){
            unsigned long long a=st.top();st.pop();
            unsigned 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];
    unsigned long long t=ev(0);
    if(t>y){
        cout<<"-1\n";
        return 0;
    }
    if(t==y){
        cout<<"0\n";
        return 0;
    }
    t=ev(100000000000000);
    if(t<y){
        cout<<"-1\n";
        return 0;
    }
    long long l=0,r=100000000000000;
    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