結果

問題 No.2927 Reverse Polish Equation
ユーザー VvyLwVvyLw
提出日時 2024-10-14 17:58:33
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 1,558 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 128,584 KB
実行使用メモリ 11,176 KB
最終ジャッジ日時 2024-10-16 00:34:01
合計ジャッジ時間 7,504 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 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 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 104 ms
5,248 KB
testcase_13 AC 176 ms
6,272 KB
testcase_14 AC 121 ms
5,504 KB
testcase_15 AC 167 ms
6,144 KB
testcase_16 AC 54 ms
5,248 KB
testcase_17 AC 228 ms
7,040 KB
testcase_18 AC 283 ms
8,064 KB
testcase_19 AC 20 ms
5,248 KB
testcase_20 AC 227 ms
7,168 KB
testcase_21 AC 343 ms
9,088 KB
testcase_22 AC 33 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 301 ms
8,348 KB
testcase_28 AC 249 ms
7,552 KB
testcase_29 AC 33 ms
5,248 KB
testcase_30 AC 285 ms
8,168 KB
testcase_31 AC 21 ms
5,248 KB
testcase_32 AC 64 ms
5,248 KB
testcase_33 AC 124 ms
5,504 KB
testcase_34 AC 150 ms
5,888 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 286 ms
8,260 KB
testcase_37 AC 96 ms
5,248 KB
testcase_38 AC 328 ms
8,820 KB
testcase_39 AC 134 ms
5,632 KB
testcase_40 AC 278 ms
7,980 KB
testcase_41 AC 227 ms
7,168 KB
testcase_42 AC 136 ms
10,944 KB
testcase_43 AC 129 ms
11,176 KB
testcase_44 AC 136 ms
11,120 KB
testcase_45 AC 127 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#ifdef local
#include <C++/core/io/debug_print.hpp>
#else
#define dump(...) void(0);
#endif

#include <iostream>
#include <ranges>
#include <string>
#include <vector>
#include <stack>
#include <algorithm>
namespace man {
typedef __int128_t i128;
}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    using namespace std::views;
    int q;
    int64_t y;
    std::cin >> q >> y;
    std::vector<std::string> s(q);
    for(auto &t: s) {
        std::cin >> t;
    }
    const auto f = [&s](const man::i128 x) -> man::i128 {
        std::stack<man::i128> sk;
        for(const auto &t: s) {
            if(t == "+" || t == "min" || t == "max") {
                const man::i128 y = sk.top();
                sk.pop();
                const man::i128 x = sk.top();
                sk.pop();
                if(t == "+") {
                    sk.emplace(x + y);
                } else if(t == "min") {
                    sk.emplace(std::min(x, y));
                } else {
                    sk.emplace(std::max(x, y));
                }
            } else {
                sk.emplace(t == "X" ? x : std::stol(t));
            }
        }
        return sk.top();
    };
    int64_t ok = (1L << 61) - 1, ng = -1;
    while(std::abs(ok - ng) > 1) {
        const man::i128 x = ((man::i128) ok + ng) / 2;
        (f(x) >= y ? ok : ng) = x;
    }
    std::cout << (f(ok) == y ? ok : -1) << '\n';
}
0