結果
問題 |
No.2927 Reverse Polish Equation
|
ユーザー |
|
提出日時 | 2024-10-14 14:38:16 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 270 ms / 2,000 ms |
コード長 | 607 bytes |
コンパイル時間 | 2,229 ms |
コンパイル使用メモリ | 201,648 KB |
最終ジャッジ日時 | 2025-02-24 19:31:04 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 43 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; vector<string> S; ll N,Y,y,z; ll f(ll x){ stack<ll> P; for(int i=0;i<N;i++){ if(S[i]=="X")P.push(x); else if(isdigit(S[i][0]))P.push(stoll(S[i])); else{ y=P.top(); P.pop(); z=P.top(); P.pop(); P.push(S[i]=="+"?y+z:S[i]=="min"?min(y,z):max(y,z)); } } return P.top(); } int main() { cin>>N>>Y; S.resize(N); for(auto &s:S)cin>>s; ll L=-1,R=Y+1; while(R-L>1)(f((R+L)/2)>=Y?R:L)=(R+L)/2; cout<<(f(R)==Y?R:-1)<<endl; }