結果

問題 No.2927 Reverse Polish Equation
ユーザー loop0919loop0919
提出日時 2024-06-13 04:38:09
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,275 bytes
コンパイル時間 3,724 ms
コンパイル使用メモリ 281,604 KB
実行使用メモリ 10,440 KB
最終ジャッジ日時 2024-10-16 00:19:57
合計ジャッジ時間 9,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 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,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 94 ms
6,820 KB
testcase_13 AC 164 ms
6,820 KB
testcase_14 AC 111 ms
6,816 KB
testcase_15 AC 153 ms
6,820 KB
testcase_16 AC 53 ms
6,816 KB
testcase_17 AC 205 ms
7,040 KB
testcase_18 AC 254 ms
8,020 KB
testcase_19 AC 17 ms
6,816 KB
testcase_20 AC 204 ms
7,032 KB
testcase_21 AC 316 ms
9,092 KB
testcase_22 AC 32 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 272 ms
8,384 KB
testcase_28 AC 227 ms
7,620 KB
testcase_29 AC 31 ms
6,816 KB
testcase_30 AC 260 ms
8,080 KB
testcase_31 AC 19 ms
6,816 KB
testcase_32 AC 59 ms
6,820 KB
testcase_33 AC 110 ms
6,820 KB
testcase_34 AC 137 ms
6,820 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 260 ms
8,100 KB
testcase_37 AC 89 ms
6,820 KB
testcase_38 AC 310 ms
8,904 KB
testcase_39 AC 124 ms
6,816 KB
testcase_40 AC 260 ms
8,056 KB
testcase_41 AC 209 ms
7,128 KB
testcase_42 AC 91 ms
10,392 KB
testcase_43 AC 117 ms
10,260 KB
testcase_44 AC 117 ms
10,440 KB
testcase_45 AC 83 ms
9,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main(){
    ll Q, Y;
    cin >> Q >> Y;
    
    vector<string> S(Q);
    for (int i = 0; i < Q; i++) {
        cin >> S[i];
    }
    
    auto rpn = [&](ll x) -> ll {
        stack<ll> A;
        
        for (string s: S) {
            if (s == "+" || s == "min" || s == "max") {
                ll a = A.top();
                A.pop();
                ll b = A.top();
                A.pop();
                
                if (s == "+") {
                    A.push(a + b);
                } else if (s == "min") {
                    A.push(min(a, b));
                } else {
                    A.push(max(a, b));
                }
                
            } else {
                if (s == "X") {
                    A.push(x);
                } else {
                    A.push(stoi(s));
                }
                
            }
        }
        
        return A.top();
    };
    
    ll ok = (ll)1e14;
    ll ng = -1LL;
    
    while (ok - ng > 1) {
        ll mid = (ok + ng) / 2;
        
        if (rpn(mid) >= Y) {
            ok = mid;
        } else {
            ng = mid;
        }
    }
    
    cout << (rpn(ok) == Y ? ok : -1) << endl;
    
    return 0;
}
0