結果

問題 No.2927 Reverse Polish Equation
ユーザー はるお味はるお味
提出日時 2024-10-14 20:17:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,452 bytes
コンパイル時間 2,931 ms
コンパイル使用メモリ 249,040 KB
実行使用メモリ 6,300 KB
最終ジャッジ日時 2024-10-16 00:34:19
合計ジャッジ時間 6,565 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 43 ms
5,248 KB
testcase_13 AC 73 ms
5,248 KB
testcase_14 AC 48 ms
5,248 KB
testcase_15 AC 69 ms
5,248 KB
testcase_16 AC 24 ms
5,248 KB
testcase_17 AC 92 ms
5,248 KB
testcase_18 AC 110 ms
5,248 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 91 ms
5,248 KB
testcase_21 AC 134 ms
5,248 KB
testcase_22 AC 14 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 123 ms
5,248 KB
testcase_28 AC 112 ms
5,248 KB
testcase_29 AC 16 ms
5,248 KB
testcase_30 AC 122 ms
5,248 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 27 ms
5,248 KB
testcase_33 AC 50 ms
5,248 KB
testcase_34 AC 63 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 32 ms
5,248 KB
testcase_37 AC 11 ms
5,248 KB
testcase_38 AC 38 ms
5,248 KB
testcase_39 AC 55 ms
5,248 KB
testcase_40 AC 33 ms
5,248 KB
testcase_41 AC 94 ms
5,248 KB
testcase_42 WA -
testcase_43 AC 101 ms
5,852 KB
testcase_44 AC 98 ms
5,848 KB
testcase_45 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<long long> VL;
typedef vector<VL> VVL;
typedef long long LL;
#define all(a) (a).begin(), (a).end()
#define Yes(n) cout << ((n) ? "Yes" : "No"  ) << endl
#define ALL(a)  (a).begin(),(a).end()
#define pb push_back

int A[200000],q;

int g(string s){
  int n=s.size();
  int a=0;
  rep(i,n){
    a=a*10+s[i]-'0';
  }return a;
}

LL f(LL x){
  VL B;
  rep(i,q){
    /*if(x==0){cout<<'!';
      for(int it : B){cout<<it<<' ';}
    }cout<<endl;
    */
    int m=B.size();
    if(A[i]==-10){B.pb(x);}
    else if(A[i]>0){B.pb(A[i]);}
    else if(A[i]==-1){
      B[m-2]+=B[m-1];B.pop_back();
    }
    else if(A[i]==-2){
      B[m-2]=max(B[m-2],B[m-1]);B.pop_back();
    }
    else if(A[i]==-3){
      B[m-2]=min(B[m-2],B[m-1]);B.pop_back(); 
    }
  }
  return B[0];
}

int main() {
  cin>>q;
  LL y;cin>>y;
  int m=0;
  rep(i,q){
    string s;cin>>s;
    //cout<<s<<endl;
    if(s=="+"){A[i]=-1;}
    else if(s=="max"){A[i]=-2;}
    else if(s=="min"){A[i]=-3;}
    else if(s=="X"){A[i]=-10;}
    else{A[i]=g(s);}
  }
  //cout<<f(0)<<endl;
  LL mm=200000000000000;
  if(f(mm)<y){cout<<-1<<endl; return 0;}
  if(f(0)==y){cout<<0<<endl; return 0;}
  LL l=0,r=mm,t;
  while(r-l>1){
    t=(r+l)/2;
    if(f(t)>=y){r=t;}
    else{l=t;}
  }
  //cout<<f(0)<<endl;
  if(f(r)!=y){r=-1;}
  cout<<r<<endl;
}
0