結果

問題 No.2927 Reverse Polish Equation
ユーザー Nzt3Nzt3
提出日時 2024-10-20 13:09:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 2,471 ms
コンパイル使用メモリ 207,188 KB
実行使用メモリ 10,336 KB
最終ジャッジ日時 2024-10-20 13:09:39
合計ジャッジ時間 10,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 AC 100 ms
6,816 KB
testcase_13 AC 180 ms
6,816 KB
testcase_14 AC 125 ms
6,820 KB
testcase_15 AC 152 ms
6,820 KB
testcase_16 AC 55 ms
6,820 KB
testcase_17 AC 216 ms
7,168 KB
testcase_18 AC 273 ms
8,052 KB
testcase_19 AC 18 ms
6,816 KB
testcase_20 AC 227 ms
7,044 KB
testcase_21 AC 316 ms
8,996 KB
testcase_22 AC 30 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 312 ms
8,360 KB
testcase_28 AC 347 ms
7,576 KB
testcase_29 AC 47 ms
6,816 KB
testcase_30 AC 423 ms
8,064 KB
testcase_31 AC 20 ms
6,816 KB
testcase_32 AC 85 ms
6,816 KB
testcase_33 AC 161 ms
6,816 KB
testcase_34 AC 203 ms
6,820 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 241 ms
8,100 KB
testcase_37 AC 133 ms
6,816 KB
testcase_38 AC 462 ms
9,032 KB
testcase_39 AC 179 ms
6,820 KB
testcase_40 AC 359 ms
8,020 KB
testcase_41 AC 306 ms
7,140 KB
testcase_42 AC 319 ms
10,316 KB
testcase_43 AC 313 ms
10,336 KB
testcase_44 AC 262 ms
10,196 KB
testcase_45 AC 295 ms
9,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)
#define all(v) v.begin(),v.end()

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int Q;
  ll Y;
  cin>>Q>>Y;
  vector<string> A(Q);
  for(auto &i:A)cin>>i;
  auto f=[&A,&Q](ll X){
    vector<ll> a;
    a.reserve(Q);
    for(auto i:A){
      if(i=="max"){
        ll x=a.back();
        a.pop_back();
        ll y=a.back();
        a.pop_back();
        a.push_back(max(x,y));
      }else if(i=="min"){
        ll x=a.back();
        a.pop_back();
        ll y=a.back();
        a.pop_back();
        a.push_back(min(x,y));
      }else if(i=="+"){
        ll x=a.back();
        a.pop_back();
        ll y=a.back();
        a.pop_back();
        a.push_back(x+y);
      }else if(i=="X"){
        a.push_back(X);
      }else{
        a.push_back(stoll(i));
      }
    }
    return a.back();
  };
  ll ng=-1,ok=Y;
  while(ok-ng>1){
    ll mid=(ok+ng)/2;
    if(f(mid)>=Y)ok=mid;
    else ng=mid;
  }
  if(f(ok)==Y)cout<<ok<<'\n';
  else cout<<"-1\n";
}
0