結果

問題 No.2927 Reverse Polish Equation
ユーザー はるお味はるお味
提出日時 2024-10-14 20:27:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,805 bytes
コンパイル時間 2,989 ms
コンパイル使用メモリ 251,820 KB
実行使用メモリ 6,880 KB
最終ジャッジ日時 2024-10-16 00:34:17
合計ジャッジ時間 6,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 50 ms
5,248 KB
testcase_13 AC 81 ms
5,248 KB
testcase_14 AC 59 ms
5,248 KB
testcase_15 AC 80 ms
5,248 KB
testcase_16 AC 26 ms
5,248 KB
testcase_17 AC 107 ms
5,248 KB
testcase_18 AC 132 ms
5,248 KB
testcase_19 AC 9 ms
5,248 KB
testcase_20 AC 104 ms
5,248 KB
testcase_21 AC 162 ms
5,248 KB
testcase_22 AC 16 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 140 ms
5,248 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 4 ms
5,248 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 36 ms
5,248 KB
testcase_37 AC 47 ms
5,248 KB
testcase_38 AC 157 ms
5,248 KB
testcase_39 AC 64 ms
5,248 KB
testcase_40 AC 129 ms
5,248 KB
testcase_41 AC 109 ms
5,248 KB
testcase_42 AC 147 ms
6,880 KB
testcase_43 AC 156 ms
6,872 KB
testcase_44 AC 155 ms
6,872 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
LL mm=200000000000000;


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;
  vector<double> BB;
  rep(i,q){
    /*cout<<'!';
      for(int it : B){cout<<it<<' ';}
    cout<<endl;*/
    //cout<<A[i]<<' '<<B.size()<<endl;
    
    int m=B.size();
    if(A[i]==-10){B.pb(x);BB.pb(x);}
    else if(A[i]>=0){B.pb(A[i]);BB.pb(A[i]);}
    else if(A[i]==-1){
      B[m-2]+=B[m-1];B.pop_back();
      BB[m-2]+=BB[m-1];BB.pop_back();
    }
    else if(A[i]==-2){
      B[m-2]=max(B[m-2],B[m-1]);B.pop_back();
      BB[m-2]=max(BB[m-2],BB[m-1]);BB.pop_back();
    }
    else if(A[i]==-3){
      B[m-2]=min(B[m-2],B[m-1]);B.pop_back(); 
      BB[m-2]=max(BB[m-2],BB[m-1]);BB.pop_back();
    }
  }
  if(BB[0]>=mm){return mm;}
  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);}
  }
  //rep(i,q){cout<<A[i]<<' ';}cout<<endl;
  //cout<<f(0)<<endl;
  //cout<<f(mm)<<endl;
  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;
    //cout<<t<<' '<<f(t)<<endl;
    if(f(t)>=y){r=t;}
    else{l=t;}
  }
  //cout<<r<<endl;
  //cout<<f(0)<<endl;
  if(f(r)!=y){r=-1;}
  cout<<r<<endl;
}
0