結果

問題 No.2927 Reverse Polish Equation
ユーザー t98slidert98slider
提出日時 2024-10-12 15:32:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 205,540 KB
実行使用メモリ 11,348 KB
最終ジャッジ日時 2024-10-16 00:23:01
合計ジャッジ時間 8,876 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,248 KB
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 AC 3 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 110 ms
5,248 KB
testcase_13 AC 190 ms
6,272 KB
testcase_14 AC 129 ms
5,504 KB
testcase_15 AC 181 ms
6,272 KB
testcase_16 AC 60 ms
5,248 KB
testcase_17 AC 237 ms
7,040 KB
testcase_18 AC 292 ms
8,064 KB
testcase_19 AC 20 ms
5,248 KB
testcase_20 AC 242 ms
7,040 KB
testcase_21 AC 372 ms
8,960 KB
testcase_22 AC 37 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 322 ms
8,192 KB
testcase_28 AC 264 ms
7,552 KB
testcase_29 AC 37 ms
5,248 KB
testcase_30 AC 306 ms
8,064 KB
testcase_31 AC 23 ms
5,248 KB
testcase_32 AC 68 ms
5,248 KB
testcase_33 AC 135 ms
5,376 KB
testcase_34 AC 161 ms
5,888 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 303 ms
8,064 KB
testcase_37 AC 105 ms
5,248 KB
testcase_38 AC 360 ms
8,960 KB
testcase_39 AC 146 ms
5,504 KB
testcase_40 AC 307 ms
7,936 KB
testcase_41 AC 258 ms
7,296 KB
testcase_42 AC 188 ms
11,220 KB
testcase_43 AC 288 ms
11,348 KB
testcase_44 AC 245 ms
11,216 KB
testcase_45 AC 179 ms
10,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll Q, Y;
    cin >> Q >> Y;
    vector<string> a(Q);
    cin >> a;
    auto f = [&](ll x){
        vector<ll> b;
        for(auto &&str : a){
            if(str == "X"){
                b.emplace_back(x);
            }else if('0' <= str[0] && str[0] <= '9'){
                b.emplace_back(stoll(str));
            }else{
                if(str == "+"){
                    b.rbegin()[1] += b.back();
                }else if(str == "max"){
                    b.rbegin()[1] = max(b.rbegin()[1], b.back());
                }else if(str == "min"){
                    b.rbegin()[1] = min(b.rbegin()[1], b.back());
                }
                b.pop_back();
            }
        }
        return b[0];
    };
    ll ng = -1, ok = 100'000'000'000'005ll;
    while(ng + 1 < ok){
        ll mid = (ok + ng) / 2;
        (f(mid) >= Y ? ok : ng) = mid;
    }
    if(f(ok) == Y){
        cout << ok << '\n';
    }else{
        cout << -1 << '\n';
    }
}
0