結果

問題 No.2927 Reverse Polish Equation
ユーザー hanagehanage
提出日時 2024-10-12 15:59:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 1,511 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 208,264 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-10-16 00:24:27
合計ジャッジ時間 12,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 7 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 7 ms
5,248 KB
testcase_12 AC 180 ms
5,248 KB
testcase_13 AC 304 ms
6,400 KB
testcase_14 AC 212 ms
5,376 KB
testcase_15 AC 288 ms
6,272 KB
testcase_16 AC 94 ms
5,248 KB
testcase_17 AC 389 ms
7,040 KB
testcase_18 AC 486 ms
8,064 KB
testcase_19 AC 31 ms
5,248 KB
testcase_20 AC 384 ms
7,040 KB
testcase_21 AC 591 ms
9,160 KB
testcase_22 AC 57 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 513 ms
8,320 KB
testcase_28 AC 436 ms
7,476 KB
testcase_29 AC 57 ms
5,248 KB
testcase_30 AC 493 ms
8,052 KB
testcase_31 AC 36 ms
5,248 KB
testcase_32 AC 110 ms
5,248 KB
testcase_33 AC 207 ms
5,248 KB
testcase_34 AC 263 ms
5,888 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 484 ms
8,216 KB
testcase_37 AC 165 ms
5,248 KB
testcase_38 AC 573 ms
8,960 KB
testcase_39 AC 231 ms
5,504 KB
testcase_40 AC 481 ms
8,176 KB
testcase_41 AC 395 ms
7,168 KB
testcase_42 AC 229 ms
10,240 KB
testcase_43 AC 292 ms
10,368 KB
testcase_44 AC 356 ms
10,240 KB
testcase_45 AC 212 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int Q;
    long long Y;
    cin >> Q >> Y;
    vector<string> s(Q);
    for (int i = 0; i < Q; i++) {
        cin >> s[i];
    }
    const long long inf = 1e18;
    long long le = 0, ri = 1e18;
    long long ans = inf;
    while (le <= ri) {
        long long mid = le + (ri - le) / 2;
        stack<long long> st;
        for (int i = 0; i < Q; i++) {
            if (s[i] == "X") {
                st.push(mid);
            } else if (s[i] == "+") {
                long long t1 = st.top();
                st.pop();
                long long t2 = st.top();
                st.pop();
                st.push(min(t1 + t2, inf));
            } else if (s[i] == "min") {
                long long t1 = st.top();
                st.pop();
                long long t2 = st.top();
                st.pop();
                st.push(min(t1, t2));
            } else if (s[i] == "max") {
                long long t1 = st.top();
                st.pop();
                long long t2 = st.top();
                st.pop();
                st.push(max(t1, t2));
            } else {
                st.push(stoll(s[i]));
            }
        }
        long long f = st.top();
        // cout << mid << " " << f << endl;
        if (f >= Y) {
            if (f == Y) ans = min(ans, mid);
            ri = mid - 1;
        } else if (f < Y) {
            le = mid + 1;
        }
    }
    if (ans == 1e18) ans = -1;
    cout << ans << endl;
    return 0;
}
0