結果

問題 No.2927 Reverse Polish Equation
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-12 19:07:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 1,703 bytes
コンパイル時間 2,712 ms
コンパイル使用メモリ 208,420 KB
実行使用メモリ 11,348 KB
最終ジャッジ日時 2024-10-16 00:31:00
合計ジャッジ時間 9,706 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 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 4 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 AC 92 ms
5,248 KB
testcase_13 AC 165 ms
6,272 KB
testcase_14 AC 114 ms
5,376 KB
testcase_15 AC 139 ms
6,016 KB
testcase_16 AC 55 ms
5,248 KB
testcase_17 AC 197 ms
7,040 KB
testcase_18 AC 253 ms
7,936 KB
testcase_19 AC 18 ms
5,248 KB
testcase_20 AC 203 ms
7,040 KB
testcase_21 AC 299 ms
8,960 KB
testcase_22 AC 27 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 284 ms
8,320 KB
testcase_28 AC 312 ms
7,424 KB
testcase_29 AC 44 ms
5,248 KB
testcase_30 AC 353 ms
8,064 KB
testcase_31 AC 20 ms
5,248 KB
testcase_32 AC 81 ms
5,248 KB
testcase_33 AC 151 ms
5,376 KB
testcase_34 AC 188 ms
5,888 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 229 ms
8,160 KB
testcase_37 AC 122 ms
5,248 KB
testcase_38 AC 409 ms
8,832 KB
testcase_39 AC 163 ms
5,632 KB
testcase_40 AC 330 ms
7,972 KB
testcase_41 AC 284 ms
7,028 KB
testcase_42 AC 288 ms
11,348 KB
testcase_43 AC 330 ms
11,344 KB
testcase_44 AC 378 ms
11,220 KB
testcase_45 AC 278 ms
10,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int q;
	long long y;
	cin >> q >> y;
	vector<string> s(q);
	for (int i = 0; i < q; i++) {
		cin >> s[i];
	}
	long long ng = -1, ok = y + 1;
	while (ng + 1 < ok) {
		long long x = (ng + ok) / 2;
		vector<long long> st;
		for (int i = 0; i < q; i++) {
			if (s[i] == "+") {
				long long a = st.back();
				st.pop_back();
				long long b = st.back();
				st.pop_back();
				st.push_back(min(y + 1, a + b));
			} else if (s[i] == "min") {
				long long a = st.back();
				st.pop_back();
				long long b = st.back();
				st.pop_back();
				st.push_back(min(a, b));
			} else if (s[i] == "max") {
				long long a = st.back();
				st.pop_back();
				long long b = st.back();
				st.pop_back();
				st.push_back(max(a, b));
			} else if (s[i] == "X") {
				st.push_back(x);
			} else {
				st.push_back(stoll(s[i]));
			}
		}
		if (st[0] < y) {
			ng = x;
		} else {
			ok = x;
		}
	}
	vector<long long> st;
	for (int i = 0; i < q; i++) {
		if (s[i] == "+") {
			long long a = st.back();
			st.pop_back();
			long long b = st.back();
			st.pop_back();
			st.push_back(min(y + 1, a + b));
		} else if (s[i] == "min") {
			long long a = st.back();
			st.pop_back();
			long long b = st.back();
			st.pop_back();
			st.push_back(min(a, b));
		} else if (s[i] == "max") {
			long long a = st.back();
			st.pop_back();
			long long b = st.back();
			st.pop_back();
			st.push_back(max(a, b));
		} else if (s[i] == "X") {
			st.push_back(ok);
		} else {
			st.push_back(stoll(s[i]));
		}
	}
	if (st[0] == y) {
		cout << ok << endl;
	} else {
		cout << -1 << endl;
	}
}
0