結果

問題 No.2927 Reverse Polish Equation
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-12 15:16:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 1,883 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 209,948 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-10-16 00:22:25
合計ジャッジ時間 10,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 5 ms
5,248 KB
testcase_12 AC 101 ms
5,248 KB
testcase_13 AC 189 ms
6,272 KB
testcase_14 AC 135 ms
5,248 KB
testcase_15 AC 160 ms
6,016 KB
testcase_16 AC 57 ms
5,248 KB
testcase_17 AC 231 ms
7,040 KB
testcase_18 AC 289 ms
7,936 KB
testcase_19 AC 19 ms
5,248 KB
testcase_20 AC 231 ms
6,912 KB
testcase_21 AC 347 ms
9,088 KB
testcase_22 AC 30 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 331 ms
8,192 KB
testcase_28 AC 369 ms
7,552 KB
testcase_29 AC 49 ms
5,248 KB
testcase_30 AC 413 ms
7,936 KB
testcase_31 AC 21 ms
5,248 KB
testcase_32 AC 92 ms
5,248 KB
testcase_33 AC 175 ms
5,248 KB
testcase_34 AC 210 ms
5,760 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 261 ms
8,064 KB
testcase_37 AC 140 ms
5,248 KB
testcase_38 AC 466 ms
8,960 KB
testcase_39 AC 187 ms
5,376 KB
testcase_40 AC 379 ms
7,936 KB
testcase_41 AC 326 ms
7,040 KB
testcase_42 AC 196 ms
10,240 KB
testcase_43 AC 257 ms
10,240 KB
testcase_44 AC 309 ms
10,240 KB
testcase_45 AC 184 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    long long Q,Y; cin >> Q >> Y;
    vector<string> S(Q);
    for(auto &s : S) cin >> s;

    long long low = -1,high = Y+2;
    while(high-low > 1){
        long long mid = (high+low)/2;
        stack<long long> st;
        for(auto s : S){
            if(s == "X") st.push(mid);
            else if(s == "+"){
                long long v1 = st.top(); st.pop();
                long long v2 = st.top(); st.pop();
                st.push(v1+v2);
            }
            else if(s == "min"){
                long long v1 = st.top(); st.pop();
                long long v2 = st.top(); st.pop();
                st.push(min(v1,v2));
            }
            else if(s == "max"){
                long long v1 = st.top(); st.pop();
                long long v2 = st.top(); st.pop();
                st.push(max(v1,v2));
            }
            else st.push(stoll(s));
        }
        if(st.top() < Y) low = mid;
        else high = mid;
    }
    {
        long long mid = high;
        stack<long long> st;
        for(auto s : S){
            if(s == "X") st.push(mid);
            else if(s == "+"){
                long long v1 = st.top(); st.pop();
                long long v2 = st.top(); st.pop();
                st.push(v1+v2);
            }
            else if(s == "min"){
                long long v1 = st.top(); st.pop();
                long long v2 = st.top(); st.pop();
                st.push(min(v1,v2));
            }
            else if(s == "max"){
                long long v1 = st.top(); st.pop();
                long long v2 = st.top(); st.pop();
                st.push(max(v1,v2));
            }
            else st.push(stoll(s));
        }
        if(st.top() == Y) cout << high << endl;
        else cout << "-1" << endl;
    }
}
0