結果

問題 No.2927 Reverse Polish Equation
ユーザー momoyuumomoyuu
提出日時 2024-10-13 18:05:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 1,888 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 99,552 KB
実行使用メモリ 6,660 KB
最終ジャッジ日時 2024-10-16 00:31:32
合計ジャッジ時間 4,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 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 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 49 ms
5,248 KB
testcase_13 AC 80 ms
5,248 KB
testcase_14 AC 56 ms
5,248 KB
testcase_15 AC 74 ms
5,248 KB
testcase_16 AC 25 ms
5,248 KB
testcase_17 AC 101 ms
5,248 KB
testcase_18 AC 125 ms
5,248 KB
testcase_19 AC 9 ms
5,248 KB
testcase_20 AC 101 ms
5,248 KB
testcase_21 AC 156 ms
5,248 KB
testcase_22 AC 17 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 135 ms
5,248 KB
testcase_28 AC 114 ms
5,248 KB
testcase_29 AC 15 ms
5,248 KB
testcase_30 AC 128 ms
5,248 KB
testcase_31 AC 10 ms
5,248 KB
testcase_32 AC 30 ms
5,248 KB
testcase_33 AC 55 ms
5,248 KB
testcase_34 AC 68 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 132 ms
5,248 KB
testcase_37 AC 44 ms
5,248 KB
testcase_38 AC 152 ms
5,248 KB
testcase_39 AC 63 ms
5,248 KB
testcase_40 AC 126 ms
5,248 KB
testcase_41 AC 99 ms
5,248 KB
testcase_42 AC 87 ms
6,660 KB
testcase_43 AC 94 ms
6,652 KB
testcase_44 AC 94 ms
6,652 KB
testcase_45 AC 87 ms
6,536 KB
権限があれば一括ダウンロードができます

ソースコード

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<ll> 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 = 1e18;
    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) p = y + 1;
                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) p = y + 1;
                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) p = y + 1;
                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