結果

問題 No.2927 Reverse Polish Equation
ユーザー yonihayoniha
提出日時 2024-10-12 16:43:55
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 1,935 bytes
コンパイル時間 7,329 ms
コンパイル使用メモリ 336,908 KB
実行使用メモリ 11,568 KB
最終ジャッジ日時 2024-10-16 00:27:05
合計ジャッジ時間 11,294 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 4 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 76 ms
5,248 KB
testcase_13 AC 131 ms
6,272 KB
testcase_14 AC 89 ms
5,632 KB
testcase_15 AC 125 ms
6,272 KB
testcase_16 AC 42 ms
5,248 KB
testcase_17 AC 166 ms
7,168 KB
testcase_18 AC 206 ms
8,064 KB
testcase_19 AC 14 ms
5,248 KB
testcase_20 AC 164 ms
7,184 KB
testcase_21 AC 256 ms
9,084 KB
testcase_22 AC 25 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 217 ms
8,320 KB
testcase_28 AC 185 ms
7,552 KB
testcase_29 AC 26 ms
5,248 KB
testcase_30 AC 210 ms
8,064 KB
testcase_31 AC 16 ms
5,248 KB
testcase_32 AC 46 ms
5,248 KB
testcase_33 AC 88 ms
5,248 KB
testcase_34 AC 113 ms
6,016 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 211 ms
8,192 KB
testcase_37 AC 70 ms
5,248 KB
testcase_38 AC 249 ms
9,064 KB
testcase_39 AC 97 ms
5,504 KB
testcase_40 AC 207 ms
8,064 KB
testcase_41 AC 165 ms
7,236 KB
testcase_42 AC 104 ms
11,568 KB
testcase_43 AC 115 ms
11,316 KB
testcase_44 AC 119 ms
11,316 KB
testcase_45 AC 102 ms
10,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define all(x) (x).begin(), (x).end()
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rrep(i, n) for(int i = (int)(n - 1); i >= 0; i--)
template <typename T> bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;}
template <typename T> bool chmin(T &a,const T &b){if(a>b){a=b;return true;}return false;}
using ll = long long;
#define int ll
using vi = vector<int>;
using vvi = vector<vector<int>>;
using vb = vector<bool>;
using vvb = vector<vector<bool>>;
using vs = vector<string>;
using pii = pair<int, int>;
// using mint = modint!!!number!!!;

signed main(){
  int q, y; cin >> q >> y;
  vs s(q); rep(i, q) cin >> s.at(i);
  int ok = 1e13, ng = -1;
  while(ok - ng > 1){
  	int mid = (ok + ng) / 2;
  	vi a; int n = 0;
  	rep(i, q){
  		if(s.at(i) == "X"){
  			a.push_back(mid);
  			n++;
  		}
  		else if(s.at(i) == "+"){
  			a.at(n - 2) += a.at(n - 1);
  			a.erase(a.begin() + n - 1);
  			n--;
  		}
  		else if(s.at(i) == "min"){
  			chmin(a.at(n - 2), a.at(n - 1));
  			a.erase(a.begin() + n - 1);
  			n--;
  		}
  		else if(s.at(i) == "max"){
  			chmax(a.at(n - 2), a.at(n - 1));
  			a.erase(a.begin() + n - 1);
  			n--;
  		}
  		else{
  			a.push_back(stoll(s.at(i)));
  			n++;
  		}
  	}
  	(a.at(0) >= y ? ok : ng) = mid;
  }
  int mid = ok, n = 0; vi a;
  rep(i, q){
  		if(s.at(i) == "X"){
  			a.push_back(mid);
  			n++;
  		}
  		else if(s.at(i) == "+"){
  			a.at(n - 2) += a.at(n - 1);
  			a.erase(a.begin() + n - 1);
  			n--;
  		}
  		else if(s.at(i) == "min"){
  			chmin(a.at(n - 2), a.at(n - 1));
  			a.erase(a.begin() + n - 1);
  			n--;
  		}
  		else if(s.at(i) == "max"){
  			chmax(a.at(n - 2), a.at(n - 1));
  			a.erase(a.begin() + n - 1);
  			n--;
  		}
  		else{
  			a.push_back(stoll(s.at(i)));
  			n++;
  		}
  	}
  	cout << (a.at(0) == y ? ok : -1) << endl;
}
0