結果

問題 No.2927 Reverse Polish Equation
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-15 13:58:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 1,528 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 207,048 KB
実行使用メモリ 11,344 KB
最終ジャッジ日時 2024-10-16 00:34:35
合計ジャッジ時間 10,776 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 4 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 6 ms
5,248 KB
testcase_12 AC 149 ms
5,248 KB
testcase_13 AC 247 ms
6,272 KB
testcase_14 AC 175 ms
5,248 KB
testcase_15 AC 242 ms
6,144 KB
testcase_16 AC 78 ms
5,248 KB
testcase_17 AC 321 ms
7,136 KB
testcase_18 AC 401 ms
8,064 KB
testcase_19 AC 26 ms
5,248 KB
testcase_20 AC 310 ms
7,040 KB
testcase_21 AC 494 ms
9,088 KB
testcase_22 AC 47 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 426 ms
8,320 KB
testcase_28 AC 361 ms
7,424 KB
testcase_29 AC 47 ms
5,248 KB
testcase_30 AC 407 ms
8,064 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 92 ms
5,248 KB
testcase_33 AC 171 ms
5,376 KB
testcase_34 AC 224 ms
5,760 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 30 ms
8,064 KB
testcase_37 AC 137 ms
5,248 KB
testcase_38 AC 480 ms
8,944 KB
testcase_39 AC 189 ms
5,504 KB
testcase_40 AC 401 ms
8,064 KB
testcase_41 AC 327 ms
7,040 KB
testcase_42 AC 318 ms
11,216 KB
testcase_43 AC 363 ms
11,344 KB
testcase_44 AC 418 ms
11,344 KB
testcase_45 AC 297 ms
10,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
using ull = unsigned long long;

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

    /*
       clamp関数は広義単調
       f(x)>=Yを満たす最小のxが答えになりうる。
    */

    ll N, Y, a, b;
    cin >> N >> Y;
    vector<string> s(N);
    for (int i=0; i<N; i++) cin >> s[i];

    auto f=[&](ull x)->ull{
        vector<ull> v;
        for (int i=0; i<N; i++){
            if (s[i] == "+"){
                a = v.back();
                v.pop_back();
                b = v.back();
                v.pop_back();
                v.push_back(a+b);
            }
            else if (s[i] == "min"){
                a = v.back();
                v.pop_back();
                b = v.back();
                v.pop_back();
                v.push_back(min(a,b));
            }
            else if (s[i] == "max"){
                a = v.back();
                v.pop_back();
                b = v.back();
                v.pop_back();
                v.push_back(max(a,b));
            }
            else if (s[i] == "X") v.push_back(x);
            else v.push_back(stoll(s[i]));
        }
        assert(v.size() == 1);
        return v[0];
    };

    if (f(0) >= Y){
        cout << (f(0) == Y ? 0 : -1) << endl;
        return 0;
    }

    ull l=0, r=1e14, c;
    while(r-l>1){
        c = (l+r)/2;
        if (f(c) >= Y) r=c;
        else l=c;
    }

    cout << (f(r) == Y ? (ll)r : -1) << endl;

    return 0;
}
0