結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
17,664 KB
testcase_01 WA -
testcase_02 AC 14 ms
17,792 KB
testcase_03 AC 13 ms
17,664 KB
testcase_04 AC 14 ms
17,920 KB
testcase_05 AC 14 ms
17,664 KB
testcase_06 AC 14 ms
17,664 KB
testcase_07 AC 16 ms
17,664 KB
testcase_08 AC 14 ms
17,664 KB
testcase_09 AC 16 ms
17,664 KB
testcase_10 AC 14 ms
17,792 KB
testcase_11 AC 19 ms
17,792 KB
testcase_12 AC 175 ms
17,792 KB
testcase_13 AC 284 ms
17,792 KB
testcase_14 AC 205 ms
17,792 KB
testcase_15 AC 276 ms
17,792 KB
testcase_16 AC 97 ms
17,664 KB
testcase_17 AC 362 ms
17,792 KB
testcase_18 AC 452 ms
17,792 KB
testcase_19 AC 40 ms
17,792 KB
testcase_20 AC 352 ms
17,792 KB
testcase_21 AC 545 ms
17,792 KB
testcase_22 AC 65 ms
17,792 KB
testcase_23 AC 14 ms
17,792 KB
testcase_24 AC 14 ms
17,664 KB
testcase_25 AC 14 ms
17,664 KB
testcase_26 AC 13 ms
17,792 KB
testcase_27 AC 479 ms
17,920 KB
testcase_28 AC 407 ms
17,792 KB
testcase_29 AC 64 ms
17,792 KB
testcase_30 AC 459 ms
17,792 KB
testcase_31 AC 16 ms
17,792 KB
testcase_32 AC 110 ms
17,664 KB
testcase_33 AC 196 ms
17,664 KB
testcase_34 AC 251 ms
17,792 KB
testcase_35 AC 14 ms
17,664 KB
testcase_36 AC 49 ms
17,792 KB
testcase_37 AC 29 ms
17,792 KB
testcase_38 AC 65 ms
17,792 KB
testcase_39 WA -
testcase_40 AC 57 ms
17,792 KB
testcase_41 WA -
testcase_42 AC 298 ms
18,688 KB
testcase_43 AC 346 ms
18,688 KB
testcase_44 AC 395 ms
18,560 KB
testcase_45 AC 276 ms
18,560 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(unsigned 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;
    }
    unsigned long long l=0,r=100000000000000;
    while(r-l>1){
        unsigned long long mid=(l+r)/2;
        if(ev(mid)<y)l=mid;
        else r=mid;
    }
    cout<<(ev(r)==y?r:-1)<<endl;
}
0