結果

問題 No.2927 Reverse Polish Equation
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-30 12:23:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,280 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 208,148 KB
実行使用メモリ 12,012 KB
最終ジャッジ日時 2024-10-30 12:23:59
合計ジャッジ時間 11,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 5 ms
6,820 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 221 ms
6,824 KB
testcase_16 WA -
testcase_17 AC 294 ms
8,020 KB
testcase_18 AC 373 ms
9,188 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 446 ms
10,540 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 398 ms
9,688 KB
testcase_28 WA -
testcase_29 AC 45 ms
6,820 KB
testcase_30 AC 374 ms
9,488 KB
testcase_31 WA -
testcase_32 AC 83 ms
6,816 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 3 ms
6,816 KB
testcase_36 WA -
testcase_37 AC 127 ms
6,820 KB
testcase_38 AC 437 ms
10,388 KB
testcase_39 WA -
testcase_40 AC 368 ms
9,192 KB
testcase_41 AC 302 ms
8,260 KB
testcase_42 WA -
testcase_43 AC 333 ms
11,856 KB
testcase_44 AC 250 ms
11,864 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = LLONG_MAX - 10;
    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