結果

問題 No.2927 Reverse Polish Equation
ユーザー viral8viral8
提出日時 2024-10-18 21:18:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,089 ms / 2,000 ms
コード長 1,434 bytes
コンパイル時間 12,461 ms
コンパイル使用メモリ 80,360 KB
実行使用メモリ 86,072 KB
最終ジャッジ日時 2024-10-18 21:19:39
合計ジャッジ時間 36,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,152 KB
testcase_01 AC 146 ms
54,096 KB
testcase_02 AC 136 ms
54,128 KB
testcase_03 AC 143 ms
54,100 KB
testcase_04 AC 142 ms
54,632 KB
testcase_05 AC 141 ms
53,864 KB
testcase_06 AC 139 ms
54,120 KB
testcase_07 AC 198 ms
54,600 KB
testcase_08 AC 216 ms
54,884 KB
testcase_09 AC 205 ms
54,804 KB
testcase_10 AC 150 ms
54,388 KB
testcase_11 AC 202 ms
54,972 KB
testcase_12 AC 592 ms
60,988 KB
testcase_13 AC 836 ms
67,128 KB
testcase_14 AC 642 ms
62,252 KB
testcase_15 AC 808 ms
66,664 KB
testcase_16 AC 430 ms
59,260 KB
testcase_17 AC 953 ms
68,864 KB
testcase_18 AC 992 ms
68,836 KB
testcase_19 AC 265 ms
58,332 KB
testcase_20 AC 923 ms
68,740 KB
testcase_21 AC 1,069 ms
68,980 KB
testcase_22 AC 327 ms
59,176 KB
testcase_23 AC 135 ms
54,084 KB
testcase_24 AC 137 ms
54,044 KB
testcase_25 AC 137 ms
54,028 KB
testcase_26 AC 137 ms
54,212 KB
testcase_27 AC 1,029 ms
68,928 KB
testcase_28 AC 957 ms
69,088 KB
testcase_29 AC 322 ms
59,032 KB
testcase_30 AC 983 ms
68,868 KB
testcase_31 AC 275 ms
58,876 KB
testcase_32 AC 434 ms
59,488 KB
testcase_33 AC 678 ms
62,728 KB
testcase_34 AC 768 ms
63,500 KB
testcase_35 AC 151 ms
54,380 KB
testcase_36 AC 1,009 ms
68,796 KB
testcase_37 AC 559 ms
59,856 KB
testcase_38 AC 1,089 ms
68,800 KB
testcase_39 AC 709 ms
62,764 KB
testcase_40 AC 968 ms
68,948 KB
testcase_41 AC 933 ms
68,988 KB
testcase_42 AC 979 ms
84,948 KB
testcase_43 AC 967 ms
86,072 KB
testcase_44 AC 980 ms
84,768 KB
testcase_45 AC 936 ms
84,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayDeque;
import java.util.function.LongUnaryOperator;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int Q = sc.nextInt();
		long Y = sc.nextLong();
		ArrayDeque<LongUnaryOperator> deq = new ArrayDeque<>();
		while(Q-->0){
			String S = sc.next();
			if(S.equals("+")){
				LongUnaryOperator f1 = deq.pollLast();
				LongUnaryOperator f2 = deq.pollLast();
				LongUnaryOperator f = x -> f1.applyAsLong(x)+f2.applyAsLong(x);
				deq.add(f);
			}
			else if(S.equals("min")){
				LongUnaryOperator f1 = deq.pollLast();
				LongUnaryOperator f2 = deq.pollLast();
				LongUnaryOperator f = x -> Math.min(f1.applyAsLong(x),f2.applyAsLong(x));
				deq.add(f);
			}
			else if(S.equals("max")){
				LongUnaryOperator f1 = deq.pollLast();
				LongUnaryOperator f2 = deq.pollLast();
				LongUnaryOperator f = x -> Math.max(f1.applyAsLong(x),f2.applyAsLong(x));
				deq.add(f);
			}
			else if(S.equals("X")){
				LongUnaryOperator f = X -> X;
				deq.add(f);
			}
			else{
				long num = Long.parseLong(S);
				LongUnaryOperator f = X -> num;
				deq.add(f);
			}
		}
		LongUnaryOperator f = deq.pollFirst();
		long a = 0;
		long b = 10_000_000_000_001L;
		long inf = b;
		long ans = b;
		while(a-b<1){
			long c = a+b>>1;
			if(f.applyAsLong(c)<Y)
				a = c+1;
			else
				b = (ans=c)-1;
		}
		System.out.println(f.applyAsLong(ans)==Y?ans:-1);
	}
}
0