結果

問題 No.2927 Reverse Polish Equation
ユーザー AyunaAyuna
提出日時 2024-10-19 17:07:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 1,302 bytes
コンパイル時間 1,394 ms
コンパイル使用メモリ 78,912 KB
実行使用メモリ 11,448 KB
最終ジャッジ日時 2024-10-19 17:07:35
合計ジャッジ時間 9,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 5 ms
6,816 KB
testcase_12 AC 88 ms
6,816 KB
testcase_13 AC 163 ms
6,816 KB
testcase_14 AC 112 ms
6,820 KB
testcase_15 AC 135 ms
6,820 KB
testcase_16 AC 49 ms
6,820 KB
testcase_17 AC 190 ms
7,092 KB
testcase_18 AC 261 ms
7,996 KB
testcase_19 AC 16 ms
6,820 KB
testcase_20 AC 201 ms
7,168 KB
testcase_21 AC 283 ms
9,140 KB
testcase_22 AC 26 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 277 ms
8,408 KB
testcase_28 AC 313 ms
7,540 KB
testcase_29 AC 39 ms
6,816 KB
testcase_30 AC 329 ms
8,232 KB
testcase_31 AC 18 ms
6,816 KB
testcase_32 AC 74 ms
6,820 KB
testcase_33 AC 143 ms
6,820 KB
testcase_34 AC 177 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 222 ms
8,132 KB
testcase_37 AC 117 ms
6,820 KB
testcase_38 AC 402 ms
8,976 KB
testcase_39 AC 157 ms
6,820 KB
testcase_40 AC 308 ms
8,192 KB
testcase_41 AC 263 ms
7,160 KB
testcase_42 AC 201 ms
11,448 KB
testcase_43 AC 250 ms
11,320 KB
testcase_44 AC 299 ms
11,444 KB
testcase_45 AC 183 ms
10,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cassert>

using namespace std;
using ll = long long;

ll check(ll x, int q, const vector<string> &a){
  vector<ll> stack;
  for (int i = 0; i < q; i++){
    if (a[i] == "X"){
      stack.emplace_back(x);
    }
    else if (a[i] == "+"){
      assert(stack.size() > 1);
      auto r = stack.back();
      stack.pop_back();
      auto t = stack.back();
      stack.pop_back();
      stack.emplace_back(t + r);
    }
    else if (a[i] == "min"){
      assert(stack.size() > 1);
      auto r = stack.back();
      stack.pop_back();
      auto t = stack.back();
      stack.pop_back();
      stack.emplace_back(min(t, r));
    }
    else if (a[i] == "max"){
      assert(stack.size() > 1);
      auto r = stack.back();
      stack.pop_back();
      auto t = stack.back();
      stack.pop_back();
      stack.emplace_back(max(t, r));
    }
    else{
      stack.emplace_back(stol(a[i]));
    }
  }
  assert(stack.size() == 1);
  return stack[0];
}

int main(){
  int q;
  ll y;
  cin >> q >> y;
  vector<string> a(q);
  for(auto &i: a) cin >> i;
  ll mn = -1, mx = y + 100;
  while(mx - mn > 1){
    ll md = (mx + mn) / 2ll;
    if(check(md, q, a) < y) mn = md;
    else mx = md;
  }
  if (check(mx, q, a) == y) cout << mx << endl;
  else cout << -1 << endl;
}
0