結果
問題 | No.2927 Reverse Polish Equation |
ユーザー | cled0328 |
提出日時 | 2024-10-12 16:09:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,197 bytes |
コンパイル時間 | 2,182 ms |
コンパイル使用メモリ | 207,196 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-10-16 00:25:15 |
合計ジャッジ時間 | 9,666 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
17,792 KB |
testcase_01 | AC | 10 ms
17,792 KB |
testcase_02 | AC | 11 ms
17,792 KB |
testcase_03 | AC | 11 ms
17,792 KB |
testcase_04 | AC | 13 ms
17,664 KB |
testcase_05 | AC | 12 ms
17,792 KB |
testcase_06 | AC | 12 ms
17,792 KB |
testcase_07 | AC | 14 ms
17,664 KB |
testcase_08 | AC | 12 ms
17,664 KB |
testcase_09 | AC | 14 ms
17,664 KB |
testcase_10 | AC | 12 ms
17,792 KB |
testcase_11 | AC | 15 ms
17,664 KB |
testcase_12 | AC | 159 ms
17,792 KB |
testcase_13 | AC | 270 ms
17,792 KB |
testcase_14 | AC | 197 ms
17,792 KB |
testcase_15 | AC | 258 ms
17,792 KB |
testcase_16 | AC | 91 ms
17,792 KB |
testcase_17 | AC | 345 ms
17,792 KB |
testcase_18 | AC | 420 ms
17,792 KB |
testcase_19 | AC | 37 ms
17,792 KB |
testcase_20 | AC | 336 ms
17,792 KB |
testcase_21 | AC | 513 ms
17,792 KB |
testcase_22 | AC | 59 ms
17,664 KB |
testcase_23 | AC | 12 ms
17,792 KB |
testcase_24 | AC | 12 ms
17,792 KB |
testcase_25 | AC | 12 ms
17,664 KB |
testcase_26 | AC | 12 ms
17,792 KB |
testcase_27 | AC | 444 ms
17,664 KB |
testcase_28 | AC | 384 ms
17,792 KB |
testcase_29 | AC | 60 ms
17,792 KB |
testcase_30 | AC | 431 ms
17,792 KB |
testcase_31 | AC | 14 ms
17,792 KB |
testcase_32 | AC | 110 ms
17,792 KB |
testcase_33 | AC | 191 ms
17,792 KB |
testcase_34 | AC | 239 ms
17,664 KB |
testcase_35 | AC | 13 ms
17,664 KB |
testcase_36 | AC | 44 ms
17,664 KB |
testcase_37 | AC | 26 ms
17,792 KB |
testcase_38 | AC | 60 ms
17,792 KB |
testcase_39 | AC | 213 ms
17,664 KB |
testcase_40 | AC | 53 ms
17,920 KB |
testcase_41 | AC | 343 ms
17,792 KB |
testcase_42 | WA | - |
testcase_43 | AC | 328 ms
18,816 KB |
testcase_44 | AC | 371 ms
18,688 KB |
testcase_45 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int q; long long y; vector<int> eg[1<<18]; string s[1<<18]; long long ev(long long x){ stack<long long> st; for(int i=0;i<q;i++){ if(s[i]=="+"){ long long a=st.top();st.pop(); long long b=st.top();st.pop(); st.push(a+b); }else if(s[i]=="min"){ long long a=st.top();st.pop(); long long b=st.top();st.pop(); st.push(min(a,b)); }else if(s[i]=="max"){ long long a=st.top();st.pop(); long long b=st.top();st.pop(); st.push(max(a,b)); }else if(s[i]=="X"){ st.push(x); }else{ st.push(stoll(s[i])); } } return st.top(); } int main(){ cin>>q>>y; for(int i=0;i<q;i++)cin>>s[i]; long long t=ev(0); if(t>y){ cout<<"-1\n"; return 0; } if(t==y){ cout<<"0\n"; return 0; } t=ev(3e14); if(t<y){ cout<<"-1\n"; return 0; } long long l=0,r=3e14; while(r-l>1){ long long mid=(l+r)/2; if(ev(mid)<y)l=mid; else r=mid; } cout<<(ev(r)==y?r:-1)<<endl; }