結果

問題 No.2927 Reverse Polish Equation
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-23 13:01:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,396 bytes
コンパイル時間 3,322 ms
コンパイル使用メモリ 250,868 KB
実行使用メモリ 11,324 KB
最終ジャッジ日時 2024-10-23 13:01:19
合計ジャッジ時間 12,521 ms
ジャッジサーバーID
(参考情報)
judge5 / 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,824 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,824 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 4 ms
6,824 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 AC 119 ms
6,824 KB
testcase_13 AC 201 ms
6,820 KB
testcase_14 AC 140 ms
6,816 KB
testcase_15 AC 193 ms
6,816 KB
testcase_16 AC 64 ms
6,820 KB
testcase_17 AC 257 ms
7,088 KB
testcase_18 AC 348 ms
8,008 KB
testcase_19 AC 21 ms
6,816 KB
testcase_20 AC 250 ms
7,012 KB
testcase_21 AC 393 ms
9,096 KB
testcase_22 AC 38 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 366 ms
8,356 KB
testcase_28 AC 289 ms
7,476 KB
testcase_29 AC 39 ms
6,816 KB
testcase_30 AC 323 ms
8,040 KB
testcase_31 AC 4 ms
6,816 KB
testcase_32 AC 72 ms
6,820 KB
testcase_33 AC 139 ms
6,816 KB
testcase_34 AC 174 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 37 ms
8,100 KB
testcase_37 AC 109 ms
6,824 KB
testcase_38 AC 380 ms
9,128 KB
testcase_39 AC 152 ms
6,820 KB
testcase_40 AC 323 ms
8,040 KB
testcase_41 AC 265 ms
7,132 KB
testcase_42 WA -
testcase_43 AC 249 ms
11,320 KB
testcase_44 AC 210 ms
11,320 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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] = 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