結果

問題 No.2927 Reverse Polish Equation
ユーザー hirakuuuuhirakuuuu
提出日時 2024-10-12 15:46:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 1,783 bytes
コンパイル時間 3,850 ms
コンパイル使用メモリ 252,936 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-10-16 00:24:02
合計ジャッジ時間 8,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 102 ms
5,248 KB
testcase_13 AC 173 ms
6,400 KB
testcase_14 AC 121 ms
5,504 KB
testcase_15 AC 163 ms
6,144 KB
testcase_16 AC 54 ms
5,248 KB
testcase_17 AC 220 ms
7,168 KB
testcase_18 AC 273 ms
8,064 KB
testcase_19 AC 18 ms
5,248 KB
testcase_20 AC 216 ms
7,040 KB
testcase_21 AC 334 ms
9,088 KB
testcase_22 AC 33 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 284 ms
8,320 KB
testcase_28 AC 238 ms
7,576 KB
testcase_29 AC 33 ms
5,248 KB
testcase_30 AC 270 ms
8,064 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 61 ms
5,248 KB
testcase_33 AC 118 ms
5,376 KB
testcase_34 AC 150 ms
5,888 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 36 ms
8,168 KB
testcase_37 AC 94 ms
5,248 KB
testcase_38 AC 326 ms
9,088 KB
testcase_39 AC 129 ms
5,504 KB
testcase_40 AC 273 ms
7,976 KB
testcase_41 AC 217 ms
7,168 KB
testcase_42 AC 109 ms
10,368 KB
testcase_43 AC 131 ms
10,344 KB
testcase_44 AC 145 ms
10,240 KB
testcase_45 AC 101 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #include <atcoder/all>
using namespace std;
// using namespace atcoder;
#define rep(i, a, n) for(int i = a; i < n; i++)
#define rrep(i, a, n) for(int i = a; i >= n; i--)
#define inr(l, x, r) (l <= x && x < r)
#define ll long long
#define ld long double

// using mint = modint1000000007;
// using mint = modint998244353;
constexpr int IINF = 1001001001;
constexpr ll INF = 2e18;

template<class t,class u> void chmax(t&a,u b){if(a<b)a=b;}
template<class t,class u> void chmin(t&a,u b){if(b<a)a=b;}

int main(){
    int q; cin >> q;
    ll y; cin >> y;
    vector<string> s(q);
    rep(i, 0, q) cin >> s[i];

    auto f = [&](ll x) -> ll {
        stack<ll> stc;
        rep(i, 0, q){
            if(s[i] == "+"){
                ll a = stc.top(); stc.pop();
                ll b = stc.top(); stc.pop();
                stc.push(a+b);
            }else if(s[i] == "min"){
                ll a = stc.top(); stc.pop();
                ll b = stc.top(); stc.pop();
                stc.push(min(a, b));
            }else if(s[i] == "max"){
                ll a = stc.top(); stc.pop();
                ll b = stc.top(); stc.pop();
                stc.push(max(a, b));
            }else if(s[i] == "X"){
                stc.push(x);
            }else{
                stc.push(stol(s[i]));
            }
        }
        return stc.top();
    };
    
    ll zero = f(0LL);
    if(zero == y){
        cout << 0 << endl;
        return 0;
    }else if(zero > y){
        cout << -1 << endl;
        return 0;
    }

    ll ng = 0, ok = 9e13;
    while(ok-ng > 1){
        ll mid = (ok+ng)/2;
        if(f(mid) >= y) ok = mid;
        else ng = mid;
    }
    if(f(ok) != y){
        cout << -1 << endl;
    }else{
        cout << ok << endl;
    }
    return 0;
}
0