結果

問題 No.2927 Reverse Polish Equation
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-30 12:55:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,267 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 208,312 KB
実行使用メモリ 11,972 KB
最終ジャッジ日時 2024-10-30 12:55:44
合計ジャッジ時間 8,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 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 3 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 72 ms
6,816 KB
testcase_13 AC 154 ms
6,952 KB
testcase_14 AC 90 ms
6,816 KB
testcase_15 AC 110 ms
6,852 KB
testcase_16 AC 40 ms
6,816 KB
testcase_17 AC 155 ms
8,112 KB
testcase_18 AC 198 ms
9,184 KB
testcase_19 AC 13 ms
6,816 KB
testcase_20 AC 161 ms
7,936 KB
testcase_21 AC 228 ms
10,508 KB
testcase_22 AC 22 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 249 ms
9,636 KB
testcase_28 AC 239 ms
8,724 KB
testcase_29 AC 32 ms
6,816 KB
testcase_30 AC 268 ms
9,480 KB
testcase_31 AC 15 ms
6,816 KB
testcase_32 AC 60 ms
6,820 KB
testcase_33 AC 112 ms
6,816 KB
testcase_34 AC 143 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 180 ms
9,312 KB
testcase_37 AC 93 ms
6,820 KB
testcase_38 AC 303 ms
10,356 KB
testcase_39 AC 124 ms
6,816 KB
testcase_40 AC 251 ms
9,284 KB
testcase_41 AC 213 ms
8,056 KB
testcase_42 AC 224 ms
11,808 KB
testcase_43 AC 259 ms
11,972 KB
testcase_44 AC 195 ms
11,940 KB
testcase_45 AC 211 ms
11,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

ll culc(ll X,ll N, vector<string> &s, vector<ll> &num) {
    stack<ll> st;
    
    rep(i, 0, N) {
        if (s[i] == "X") {
            st.push(X);
            continue;
        }
        if (num[i] != -1) {
            st.push(num[i]);
            continue;
        }
        
        ll top = st.top();
        st.pop();
        
        if (s[i] == "max") st.top() = max(st.top(), top);
        else if (s[i] == "min") st.top() = min(st.top(), top);
        else st.top() = st.top() + top;
    }
    
    return st.top();
}

int main() {
    cin.tie(nullptr);
    
    ll Q, Y;
    cin >> Q >> Y;
    
    vector<string> s(Q);
    vector<ll> num(Q, -1);
    rep(i, 0, Q) {
        cin >> s[i];
        
        if (s[i] != "min" && s[i] != "max" && s[i] != "+" && s[i] != "X") {
            num[i] = stoi(s[i]);
        }
    }
    
    ll ng = -1, ok = Y;
    while (ok - ng > 1) {
        ll mid = (ok - ng) / 2 + ng;
        
        if (culc(mid, Q, s, num) >= Y) ok = mid;
        else ng = mid;
    }
    
    if (culc(ok, Q, s, num) == Y) cout << ok << '\n';
    else cout << -1 << '\n';
}
0