結果
問題 | No.2927 Reverse Polish Equation |
ユーザー | はるお味 |
提出日時 | 2024-10-14 20:06:47 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,161 bytes |
コンパイル時間 | 2,928 ms |
コンパイル使用メモリ | 248,992 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-16 00:34:03 |
合計ジャッジ時間 | 6,608 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 50 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 14 ms
6,816 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 25 ms
6,820 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
6,816 KB |
testcase_36 | WA | - |
testcase_37 | AC | 13 ms
6,816 KB |
testcase_38 | AC | 38 ms
6,820 KB |
testcase_39 | WA | - |
testcase_40 | AC | 32 ms
6,816 KB |
testcase_41 | AC | 87 ms
6,816 KB |
testcase_42 | AC | 92 ms
6,820 KB |
testcase_43 | AC | 104 ms
6,816 KB |
testcase_44 | AC | 96 ms
6,816 KB |
testcase_45 | WA | - |
ソースコード
#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 f(LL x){ VL B; rep(i,q){ int m=B.size(); if(A[i]==0){B.pb(x);} if(A[i]>0){B.pb(A[i]);} if(A[i]==-1){ B[m-2]+=B[m-1];B.pop_back(); } if(A[i]==-2){ B[m-2]=max(B[m-2],B[m-1]);B.pop_back(); } if(A[i]==-3){ B[m-2]=min(B[m-2],B[m-1]);B.pop_back(); } } return B[0]; } int main() { cin>>q; LL y;cin>>y; int m=0; rep(i,q){ string s;cin>>s; 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]=0;} else{A[i]=s[0]-'0';} } if(f(2*y)<y){cout<<-1<<endl; return 0;} if(f(0)==y){cout<<0<<endl; return 0;} LL l=0,r=2*y,t; while(r-l>1){ t=(r+l)/2; if(f(t)>=y){r=t;} else{l=t;} } if(f(r)!=y){r=-1;} cout<<r<<endl; }