結果

問題 No.2927 Reverse Polish Equation
ユーザー momoyuumomoyuu
提出日時 2024-10-13 18:02:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,887 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 100,712 KB
実行使用メモリ 5,756 KB
最終ジャッジ日時 2024-10-16 00:31:23
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
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 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 28 ms
5,248 KB
testcase_38 AC 110 ms
5,248 KB
testcase_39 AC 38 ms
5,248 KB
testcase_40 AC 72 ms
5,248 KB
testcase_41 AC 61 ms
5,248 KB
testcase_42 AC 66 ms
5,744 KB
testcase_43 AC 78 ms
5,756 KB
testcase_44 AC 79 ms
5,752 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;


int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll q,y;
    cin>>q>>y;
    ll n = q;
    vector<int> s(n);
    auto calc = [](string now){
        ll ans = 0;
        for(int i = 0;i<now.size();i++){
            ans *= 10;
            ans += now[i] - '0';
        }
        return ans;
    };
    for(int i = 0;i<n;i++){
        string now;
        cin>>now;
        if(now=="X") s[i] = -1;
        else if(now=="+") s[i] = -2;
        else if(now=="max") s[i] = -3;
        else if(now=="min") s[i] = -4;
        else s[i] = calc(now);
    }
    ll right = y + 1;
    ll left = -1;

    auto get = [&](ll now) {
        vector<ll> a;
        for(int i = 0;i<n;i++){
            if(s[i]==-1) a.push_back(now);
            else if(s[i]==-2){
                ll p = 0;
                p += a.back();
                a.pop_back();
                p += a.back();
                a.pop_back();
                if(p>y) return p;
                a.push_back(p);
            }else if(s[i]==-3){
                ll p = 0;
                p += a.back();
                a.pop_back();
                p = max(p,a.back());
                a.pop_back();
                if(p>y) return p;
                a.push_back(p);
            }else if(s[i]==-4){
                ll p = 0;
                p += a.back();
                a.pop_back();
                p = min(p,a.back());
                a.pop_back();
                if(p>y) return p;
                a.push_back(p);
            }else{
                a.push_back(s[i]);
            }
        }
        return a[0];
    };
    while(right-left>1){
        ll mid = (right+left) / 2;
        if(get(mid)>=y) right = mid;
        else left = mid;
    }
    if(get(right)==y) cout<<right<<endl;
    else cout<<-1<<endl;
}
0