結果

問題 No.2927 Reverse Polish Equation
ユーザー MMMM
提出日時 2024-10-12 16:49:59
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,517 bytes
コンパイル時間 6,230 ms
コンパイル使用メモリ 336,680 KB
実行使用メモリ 17,584 KB
最終ジャッジ日時 2024-10-16 00:27:53
合計ジャッジ時間 14,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 5 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 244 ms
9,272 KB
testcase_14 WA -
testcase_15 AC 231 ms
9,088 KB
testcase_16 AC 74 ms
5,248 KB
testcase_17 AC 320 ms
11,136 KB
testcase_18 AC 398 ms
12,828 KB
testcase_19 AC 25 ms
5,248 KB
testcase_20 AC 311 ms
11,008 KB
testcase_21 AC 493 ms
14,976 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 424 ms
13,440 KB
testcase_28 AC 358 ms
11,812 KB
testcase_29 AC 45 ms
5,248 KB
testcase_30 AC 408 ms
13,028 KB
testcase_31 AC 28 ms
5,248 KB
testcase_32 AC 86 ms
5,384 KB
testcase_33 AC 167 ms
7,424 KB
testcase_34 AC 213 ms
8,472 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 404 ms
13,056 KB
testcase_37 AC 131 ms
6,656 KB
testcase_38 AC 483 ms
14,720 KB
testcase_39 AC 188 ms
7,900 KB
testcase_40 AC 398 ms
12,824 KB
testcase_41 AC 322 ms
11,180 KB
testcase_42 WA -
testcase_43 AC 165 ms
17,460 KB
testcase_44 AC 162 ms
17,460 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))z
using namespace std;
using namespace atcoder;
using ll = long long;
const ll mod = 998244353;
using mint = modint998244353;
using Graph = vector<vector<pair<int,ll>>>;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};

double dist(int x1, int y1, int x2, int y2){
  double res = (x1-x2) * (x1-x2) + (y1-y2) * (y1-y2);
  return sqrt(res);
}

ll f(ll x, vector<string> v){
  int n = v.size();
  vector<ll> a;
  for(int i = 0; i < n; i++){
    if(v[i] == "X")
      a.push_back(x);
    else if(v[i] == "+"){
      ll b = a.back();
      a.pop_back();
      ll c = a.back();
      a.pop_back();
      a.push_back(b+c);
    }
    else if(v[i] == "min"){
      ll b = a.back();
      a.pop_back();
      ll c = a.back();
      a.pop_back();
      a.push_back(min(b,c));
    }
    else if(v[i] == "max"){
      ll b = a.back();
      a.pop_back();
      ll c = a.back();
      a.pop_back();
      a.push_back(max(b,c));
    }
    else{
      ll m = stoi(v[i]);
      a.push_back(m);
    }
  }
  return a.front();
}

int main(){
  // input
  int Q; ll Y;
  cin >> Q >> Y;
  vector<string> S(Q);
  for(int i = 0; i < Q; i++){
    cin >> S[i];
    assert(S[i].size() > 0);
  }
    
  // solve
  ll lo = -1, hi = 4e18;
  while(abs(hi-lo) > 1){
    ll mid = (lo + hi) / 2;
    
    if(f(mid,S) >= Y) hi = mid;
    else lo = mid;
  }
  
  // output
  cout << (hi >= 0 && f(hi,S) == Y ? hi : -1) << endl;
}
0