結果

問題 No.2927 Reverse Polish Equation
ユーザー VvyLwVvyLw
提出日時 2024-10-14 17:48:36
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,507 bytes
コンパイル時間 1,540 ms
コンパイル使用メモリ 127,388 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-16 00:33:53
合計ジャッジ時間 7,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 97 ms
5,248 KB
testcase_13 AC 165 ms
6,272 KB
testcase_14 AC 116 ms
5,376 KB
testcase_15 AC 159 ms
6,144 KB
testcase_16 AC 52 ms
5,248 KB
testcase_17 AC 210 ms
7,040 KB
testcase_18 AC 261 ms
8,064 KB
testcase_19 AC 18 ms
5,248 KB
testcase_20 AC 210 ms
7,040 KB
testcase_21 AC 315 ms
8,960 KB
testcase_22 AC 31 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 288 ms
8,320 KB
testcase_28 AC 236 ms
7,680 KB
testcase_29 AC 34 ms
5,248 KB
testcase_30 AC 265 ms
8,064 KB
testcase_31 AC 20 ms
5,248 KB
testcase_32 AC 58 ms
5,248 KB
testcase_33 AC 112 ms
5,376 KB
testcase_34 AC 146 ms
5,888 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 271 ms
8,192 KB
testcase_37 AC 91 ms
5,248 KB
testcase_38 AC 314 ms
8,960 KB
testcase_39 AC 128 ms
5,504 KB
testcase_40 AC 265 ms
7,936 KB
testcase_41 AC 212 ms
7,040 KB
testcase_42 WA -
testcase_43 AC 89 ms
10,496 KB
testcase_44 AC 96 ms
10,368 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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 {

}
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 int64_t x) -> int64_t {
        std::stack<int64_t> sk;
        for(const auto &t: s) {
            if(t == "+" || t == "min" || t == "max") {
                const int64_t y = sk.top();
                sk.pop();
                const int64_t 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 auto x = (ok + ng) / 2;
        (f(x) >= y ? ok : ng) = x;
    }
    std::cout << (f(ok) == y ? ok : -1) << '\n';
}
0