結果

問題 No.2927 Reverse Polish Equation
ユーザー hirakuuuuhirakuuuu
提出日時 2024-10-12 15:43:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,783 bytes
コンパイル時間 3,140 ms
コンパイル使用メモリ 252,808 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-10-16 00:23:44
合計ジャッジ時間 9,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 5 ms
5,248 KB
testcase_12 AC 103 ms
5,248 KB
testcase_13 AC 175 ms
6,272 KB
testcase_14 AC 123 ms
5,376 KB
testcase_15 AC 167 ms
6,144 KB
testcase_16 AC 55 ms
5,248 KB
testcase_17 AC 227 ms
6,912 KB
testcase_18 AC 278 ms
8,064 KB
testcase_19 AC 18 ms
5,248 KB
testcase_20 AC 218 ms
7,160 KB
testcase_21 AC 341 ms
9,088 KB
testcase_22 AC 34 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 295 ms
8,192 KB
testcase_28 AC 244 ms
7,616 KB
testcase_29 AC 33 ms
5,248 KB
testcase_30 AC 282 ms
8,064 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 63 ms
5,248 KB
testcase_33 AC 117 ms
5,376 KB
testcase_34 AC 149 ms
5,888 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 37 ms
8,308 KB
testcase_37 AC 96 ms
5,248 KB
testcase_38 AC 334 ms
8,960 KB
testcase_39 AC 132 ms
5,504 KB
testcase_40 AC 277 ms
8,064 KB
testcase_41 AC 222 ms
7,168 KB
testcase_42 WA -
testcase_43 AC 134 ms
10,240 KB
testcase_44 AC 147 ms
10,232 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 3e14;
    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