結果

問題 No.2927 Reverse Polish Equation
ユーザー startcppstartcpp
提出日時 2024-10-12 16:47:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 2,023 bytes
コンパイル時間 1,197 ms
コンパイル使用メモリ 87,772 KB
実行使用メモリ 11,320 KB
最終ジャッジ日時 2024-10-16 00:27:30
合計ジャッジ時間 9,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,728 KB
testcase_01 AC 7 ms
9,728 KB
testcase_02 AC 7 ms
9,732 KB
testcase_03 AC 7 ms
9,688 KB
testcase_04 AC 7 ms
9,704 KB
testcase_05 AC 7 ms
9,856 KB
testcase_06 AC 6 ms
9,728 KB
testcase_07 AC 8 ms
9,728 KB
testcase_08 AC 11 ms
9,848 KB
testcase_09 AC 9 ms
9,728 KB
testcase_10 AC 6 ms
9,728 KB
testcase_11 AC 11 ms
9,712 KB
testcase_12 AC 134 ms
9,552 KB
testcase_13 AC 223 ms
9,716 KB
testcase_14 AC 157 ms
9,728 KB
testcase_15 AC 215 ms
9,796 KB
testcase_16 AC 74 ms
9,728 KB
testcase_17 AC 284 ms
9,720 KB
testcase_18 AC 357 ms
9,728 KB
testcase_19 AC 28 ms
9,848 KB
testcase_20 AC 282 ms
9,728 KB
testcase_21 AC 440 ms
9,728 KB
testcase_22 AC 46 ms
9,728 KB
testcase_23 AC 7 ms
9,600 KB
testcase_24 AC 6 ms
9,728 KB
testcase_25 AC 6 ms
9,728 KB
testcase_26 AC 7 ms
9,684 KB
testcase_27 AC 376 ms
9,636 KB
testcase_28 AC 315 ms
9,600 KB
testcase_29 AC 46 ms
9,728 KB
testcase_30 AC 365 ms
9,728 KB
testcase_31 AC 31 ms
9,724 KB
testcase_32 AC 84 ms
9,600 KB
testcase_33 AC 155 ms
9,728 KB
testcase_34 AC 193 ms
9,684 KB
testcase_35 AC 8 ms
9,588 KB
testcase_36 AC 357 ms
9,728 KB
testcase_37 AC 124 ms
9,728 KB
testcase_38 AC 431 ms
9,620 KB
testcase_39 AC 172 ms
9,600 KB
testcase_40 AC 355 ms
9,728 KB
testcase_41 AC 289 ms
9,728 KB
testcase_42 AC 241 ms
11,312 KB
testcase_43 AC 296 ms
11,320 KB
testcase_44 AC 350 ms
11,320 KB
testcase_45 AC 222 ms
11,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <functional>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cstdio>
#include <cmath>
#include <cassert>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;
typedef pair<int, int> P;

int q, Y;
string s[200000];

int calc(int X) {
    const int INF = 1e+18;

    vector<int> stk;
    for (int i = 0; i < q; i++) {
        if (s[i] == "X") {
            stk.push_back(X);
        }
        else if (s[i] == "+") {
            int a = stk[stk.size() - 2];
            int b = stk[stk.size() - 1];
            stk.pop_back();
            stk.pop_back();
            stk.push_back(min(INF, a + b));
        }
        else if (s[i] == "min") {
            int a = stk[stk.size() - 2];
            int b = stk[stk.size() - 1];
            stk.pop_back();
            stk.pop_back();
            stk.push_back(min(a, b));
        }
        else if (s[i] == "max") {
            int a = stk[stk.size() - 2];
            int b = stk[stk.size() - 1];
            stk.pop_back();
            stk.pop_back();
            stk.push_back(max(a, b));
        }
        else {
            int val = 0;
            for (int j = 0; j < s[i].length(); j++) {
                val *= 10;
                val += s[i][j] - '0';
            }
            stk.push_back(val);
        }

        /*cout << "i: " << i << ", X: " << X << endl;
        for (int j = 0; j < stk.size(); j++) {
            cout << stk[j] << " ";
        }
        cout << endl;*/
    }
    return stk[0];
}

signed main() {
    int i;

    cin >> q >> Y;
    rep(i, q) cin >> s[i];

    //まじでいい問題
    int ng = -1, ok = 1e+15, mid;
    while (ok - ng >= 2) {
        mid = (ok + ng) / 2;
        int res = calc(mid);
        if (res >= Y) ok = mid;
        else ng = mid;
    }

    if (calc(ok) == Y) {
        cout << ok << endl;
    }
    else {
        cout << -1 << endl;
    }
    return 0;
}
0