結果

問題 No.2927 Reverse Polish Equation
ユーザー karinohitokarinohito
提出日時 2024-10-14 14:05:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 210,752 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-10-16 00:32:07
合計ジャッジ時間 8,649 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 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 3 ms
5,248 KB
testcase_12 AC 84 ms
5,248 KB
testcase_13 AC 149 ms
6,272 KB
testcase_14 AC 102 ms
5,376 KB
testcase_15 AC 121 ms
6,144 KB
testcase_16 AC 45 ms
5,248 KB
testcase_17 AC 175 ms
7,168 KB
testcase_18 AC 222 ms
8,064 KB
testcase_19 AC 15 ms
5,248 KB
testcase_20 AC 180 ms
7,040 KB
testcase_21 AC 270 ms
9,088 KB
testcase_22 AC 25 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 2 ms
5,248 KB
testcase_27 AC 254 ms
8,448 KB
testcase_28 AC 279 ms
7,680 KB
testcase_29 AC 40 ms
5,248 KB
testcase_30 AC 313 ms
8,064 KB
testcase_31 AC 17 ms
5,248 KB
testcase_32 AC 69 ms
5,248 KB
testcase_33 AC 136 ms
5,504 KB
testcase_34 AC 165 ms
5,888 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 199 ms
8,192 KB
testcase_37 AC 111 ms
5,248 KB
testcase_38 AC 353 ms
8,960 KB
testcase_39 AC 142 ms
5,504 KB
testcase_40 AC 297 ms
8,064 KB
testcase_41 AC 255 ms
7,040 KB
testcase_42 AC 147 ms
10,368 KB
testcase_43 AC 240 ms
10,368 KB
testcase_44 AC 188 ms
10,368 KB
testcase_45 AC 135 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#include<atcoder/modint>
using namespace atcoder;
using mint = modint998244353;

vector<string> S;
ll calc(ll x){
    int N=S.size();
    stack<ll> P;
    for(int i=0;i<N;i++){
        if(S[i]=="X")P.push(x);
        else if(S[i]=="+"){
            ll y=P.top();
            P.pop();
            ll z=P.top();
            P.pop();
            P.push(y+z);
        }
        else if(S[i]=="max"){
            ll y=P.top();
            P.pop();
            ll z=P.top();
            P.pop();
            P.push(max(y,z));
        }
        else if(S[i]=="min"){
            ll y=P.top();
            P.pop();
            ll z=P.top();
            P.pop();
            P.push(min(y,z));
        }
        else P.push(stoll(S[i]));
    }
    return P.top();
}

void solve() {
    ll Q,Y;
    cin>>Q>>Y;
    S.resize(Q);
    for(int i=0;i<Q;i++)cin>>S[i];
    ll L=-1,R=Y+1;
    while(R-L>1){
        ll M=(R+L)/2;
        if(calc(M)>=Y)R=M;
        else L=M;
    }
    if(calc(R)==Y)cout<<R<<endl;
    else cout<<-1<<endl;
}

int main() {

    ios::sync_with_stdio(false);
    cin.tie(nullptr);


    // ll T;
    // cin>>T;
    // while(T--)
    solve();
}
0