結果

問題 No.2927 Reverse Polish Equation
ユーザー Nzt3Nzt3
提出日時 2024-10-20 13:04:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 1,113 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 208,812 KB
実行使用メモリ 17,596 KB
最終ジャッジ日時 2024-10-20 13:04:35
合計ジャッジ時間 10,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 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 4 ms
6,820 KB
testcase_12 AC 97 ms
6,824 KB
testcase_13 AC 171 ms
9,240 KB
testcase_14 AC 123 ms
7,424 KB
testcase_15 AC 147 ms
9,168 KB
testcase_16 AC 53 ms
6,816 KB
testcase_17 AC 220 ms
10,976 KB
testcase_18 AC 269 ms
12,868 KB
testcase_19 AC 18 ms
6,820 KB
testcase_20 AC 215 ms
10,948 KB
testcase_21 AC 304 ms
15,028 KB
testcase_22 AC 29 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 315 ms
13,472 KB
testcase_28 AC 332 ms
11,820 KB
testcase_29 AC 46 ms
6,816 KB
testcase_30 AC 374 ms
13,076 KB
testcase_31 AC 20 ms
6,816 KB
testcase_32 AC 82 ms
6,816 KB
testcase_33 AC 167 ms
7,424 KB
testcase_34 AC 202 ms
8,552 KB
testcase_35 AC 3 ms
6,816 KB
testcase_36 AC 251 ms
13,048 KB
testcase_37 AC 127 ms
6,820 KB
testcase_38 AC 429 ms
14,548 KB
testcase_39 AC 186 ms
7,848 KB
testcase_40 AC 374 ms
12,812 KB
testcase_41 AC 294 ms
11,124 KB
testcase_42 AC 338 ms
17,468 KB
testcase_43 AC 358 ms
17,596 KB
testcase_44 AC 306 ms
17,596 KB
testcase_45 AC 335 ms
16,372 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](ll X){
    stack<ll,vector<ll>> a;
    for(auto i:A){
      if(i=="max"){
        ll x=a.top();
        a.pop();
        ll y=a.top();
        a.pop();
        a.push(max(x,y));
      }else if(i=="min"){
        ll x=a.top();
        a.pop();
        ll y=a.top();
        a.pop();
        a.push(min(x,y));
      }else if(i=="+"){
        ll x=a.top();
        a.pop();
        ll y=a.top();
        a.pop();
        a.push(x+y);
      }else if(i=="X"){
        a.push(X);
      }else{
        a.push(stoll(i));
      }
    }
    return a.top();
  };
  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