結果

問題 No.2927 Reverse Polish Equation
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-15 14:09:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 1,618 bytes
コンパイル時間 6,266 ms
コンパイル使用メモリ 382,900 KB
実行使用メモリ 16,720 KB
最終ジャッジ日時 2024-10-16 00:34:44
合計ジャッジ時間 17,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 7 ms
5,248 KB
testcase_12 AC 187 ms
5,248 KB
testcase_13 AC 287 ms
6,144 KB
testcase_14 AC 207 ms
5,248 KB
testcase_15 AC 288 ms
6,144 KB
testcase_16 AC 90 ms
5,248 KB
testcase_17 AC 377 ms
7,168 KB
testcase_18 AC 471 ms
8,064 KB
testcase_19 AC 30 ms
5,248 KB
testcase_20 AC 362 ms
7,040 KB
testcase_21 AC 569 ms
9,088 KB
testcase_22 AC 56 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 494 ms
8,448 KB
testcase_28 AC 425 ms
7,424 KB
testcase_29 AC 56 ms
5,248 KB
testcase_30 AC 484 ms
8,192 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 113 ms
5,248 KB
testcase_33 AC 210 ms
5,376 KB
testcase_34 AC 261 ms
5,888 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 33 ms
8,192 KB
testcase_37 AC 164 ms
5,248 KB
testcase_38 AC 556 ms
8,960 KB
testcase_39 AC 222 ms
5,504 KB
testcase_40 AC 471 ms
7,936 KB
testcase_41 AC 408 ms
7,168 KB
testcase_42 AC 603 ms
16,716 KB
testcase_43 AC 616 ms
16,720 KB
testcase_44 AC 665 ms
16,600 KB
testcase_45 AC 567 ms
15,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <boost/multiprecision/cpp_int.hpp>

using namespace std;
using ll = long long;
using namespace boost::multiprecision; 
using ull = cpp_int;

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

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

    ll N, Y;
    ull 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((ull)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=(ll)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