結果

問題 No.2927 Reverse Polish Equation
ユーザー pengin_2000pengin_2000
提出日時 2024-10-12 16:35:02
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-10-16 00:26:42
合計ジャッジ時間 3,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 27 ms
5,248 KB
testcase_13 AC 48 ms
5,248 KB
testcase_14 AC 34 ms
5,248 KB
testcase_15 AC 41 ms
5,248 KB
testcase_16 AC 15 ms
5,248 KB
testcase_17 AC 58 ms
5,248 KB
testcase_18 AC 74 ms
5,248 KB
testcase_19 AC 5 ms
5,248 KB
testcase_20 AC 58 ms
5,248 KB
testcase_21 AC 88 ms
5,248 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 82 ms
5,248 KB
testcase_28 AC 85 ms
5,248 KB
testcase_29 AC 12 ms
5,248 KB
testcase_30 AC 97 ms
5,248 KB
testcase_31 AC 6 ms
5,248 KB
testcase_32 AC 23 ms
5,248 KB
testcase_33 AC 42 ms
5,248 KB
testcase_34 AC 51 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 67 ms
5,248 KB
testcase_37 AC 34 ms
5,248 KB
testcase_38 AC 111 ms
5,248 KB
testcase_39 AC 46 ms
5,248 KB
testcase_40 AC 91 ms
5,248 KB
testcase_41 AC 77 ms
5,248 KB
testcase_42 AC 28 ms
5,760 KB
testcase_43 AC 28 ms
5,760 KB
testcase_44 AC 28 ms
5,760 KB
testcase_45 AC 27 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
long long int num(char s[])
{
	long long int res = 0, i;
	for (i = 0; s[i] != '\0'; i++)
		res = 10 * res + s[i] - '0';
	return res;
}
long long int q;
char s[200005][16];
long long int a[200005];
long long int cal(long long int x)
{
	long long int aa, i;
	aa = 0;
	for (i = 0; i < q; i++)
	{
		if (s[i][0] == 'X')
		{
			a[aa] = x;
			aa++;
		}
		else if (s[i][0] == '+')
		{
			aa--;
			a[aa - 1] += a[aa];
		}
		else if (s[i][1] == 'a')
		{
			aa--;
			if (a[aa - 1] < a[aa])
				a[aa - 1] = a[aa];
		}
		else if (s[i][1] == 'i')
		{
			aa--;
			if (a[aa - 1] > a[aa])
				a[aa - 1] = a[aa];
		}
		else
		{
			a[aa] = num(s[i]);
			aa++;
		}
	}
	return a[0];
}
int main()
{
	long long int y;
	scanf("%lld %lld", &q, &y);
	long long int i;
	for (i = 0; i < q; i++)
		scanf("%s", s[i]);
	long long int min, mid, max;
	min = -1;
	max = y + 1;
	while (max - min > 1)
	{
		mid = (max + min) / 2;
		if (cal(mid) < y)
			min = mid;
		else
			max = mid;
	}
	if (cal(max) != y)
		max = -1;
	printf("%lld\n", max);
	return 0;
}

0