結果

問題 No.2927 Reverse Polish Equation
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-23 13:05:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 3,526 ms
コンパイル使用メモリ 250,448 KB
実行使用メモリ 11,448 KB
最終ジャッジ日時 2024-10-23 13:06:10
合計ジャッジ時間 10,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 AC 118 ms
6,820 KB
testcase_13 AC 201 ms
6,816 KB
testcase_14 AC 138 ms
6,820 KB
testcase_15 AC 191 ms
6,820 KB
testcase_16 AC 64 ms
6,820 KB
testcase_17 AC 256 ms
7,144 KB
testcase_18 AC 316 ms
8,012 KB
testcase_19 AC 21 ms
6,820 KB
testcase_20 AC 252 ms
7,104 KB
testcase_21 AC 392 ms
9,200 KB
testcase_22 AC 39 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,824 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 340 ms
8,392 KB
testcase_28 AC 285 ms
7,524 KB
testcase_29 AC 38 ms
6,816 KB
testcase_30 AC 334 ms
8,184 KB
testcase_31 AC 5 ms
6,824 KB
testcase_32 AC 72 ms
6,820 KB
testcase_33 AC 138 ms
6,820 KB
testcase_34 AC 179 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 36 ms
8,160 KB
testcase_37 AC 107 ms
6,820 KB
testcase_38 AC 381 ms
9,060 KB
testcase_39 AC 151 ms
6,820 KB
testcase_40 AC 325 ms
8,016 KB
testcase_41 AC 259 ms
7,096 KB
testcase_42 AC 192 ms
11,448 KB
testcase_43 AC 238 ms
11,324 KB
testcase_44 AC 206 ms
11,320 KB
testcase_45 AC 174 ms
10,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(long long i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(long long i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

int main() {
    int q;
    lint y;
    cin >> q >> y;
    vector<string> s(q);
    rep(i, q) {
        cin >> s[i];
    }
    auto f = [&](lint x) {
        vector<lint> a;
        rep(i, q) {
            int sz = a.size();
            if (s[i] == "+") {
                a[sz - 2] = min(LINF, a[sz - 2] + a[sz - 1]);
                a.pop_back();
            } else if (s[i] == "max") {
                a[sz - 2] = max(a[sz - 2], a[sz - 1]);
                a.pop_back();
            } else if (s[i] == "min") {
                a[sz - 2] = min(a[sz - 2], a[sz - 1]);
                a.pop_back();
            } else {
                a.emplace_back(s[i] == "X" ? x : stoll(s[i]));
            }
        }
        return a[0];
    };
    if (f(0LL) == y) {
        cout << 0 << endl;
        return 0;
    }
    lint l = 0, r = LINF;
    while (r - l > 1) {
        lint mid = (l + r) / 2;
        if (f(mid) >= y) {
            r = mid;
        } else {
            l = mid;
        }
    }
    cout << (f(r) == y ? r : -1) << endl;
}
0