結果

問題 No.2927 Reverse Polish Equation
ユーザー kakel-sankakel-san
提出日時 2024-10-30 01:11:43
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 1,632 bytes
コンパイル時間 8,198 ms
コンパイル使用メモリ 166,324 KB
実行使用メモリ 213,336 KB
最終ジャッジ日時 2024-10-30 01:12:03
合計ジャッジ時間 18,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,208 KB
testcase_01 AC 61 ms
30,208 KB
testcase_02 AC 58 ms
30,464 KB
testcase_03 AC 58 ms
29,952 KB
testcase_04 AC 58 ms
30,336 KB
testcase_05 AC 59 ms
29,932 KB
testcase_06 AC 59 ms
30,336 KB
testcase_07 AC 60 ms
30,720 KB
testcase_08 AC 78 ms
32,640 KB
testcase_09 AC 77 ms
32,256 KB
testcase_10 AC 59 ms
30,592 KB
testcase_11 AC 77 ms
32,384 KB
testcase_12 AC 129 ms
36,608 KB
testcase_13 AC 179 ms
40,448 KB
testcase_14 AC 165 ms
38,528 KB
testcase_15 AC 159 ms
40,448 KB
testcase_16 AC 106 ms
34,816 KB
testcase_17 AC 198 ms
42,880 KB
testcase_18 AC 234 ms
45,148 KB
testcase_19 AC 86 ms
33,152 KB
testcase_20 AC 207 ms
42,980 KB
testcase_21 AC 281 ms
47,232 KB
testcase_22 AC 90 ms
33,792 KB
testcase_23 AC 58 ms
30,208 KB
testcase_24 AC 58 ms
30,208 KB
testcase_25 AC 58 ms
30,208 KB
testcase_26 AC 59 ms
30,088 KB
testcase_27 AC 255 ms
46,336 KB
testcase_28 AC 267 ms
44,544 KB
testcase_29 AC 116 ms
34,432 KB
testcase_30 AC 299 ms
45,568 KB
testcase_31 AC 87 ms
33,152 KB
testcase_32 AC 122 ms
35,200 KB
testcase_33 AC 164 ms
38,528 KB
testcase_34 AC 184 ms
39,808 KB
testcase_35 AC 60 ms
30,720 KB
testcase_36 AC 240 ms
45,696 KB
testcase_37 AC 84 ms
36,352 KB
testcase_38 AC 109 ms
46,592 KB
testcase_39 AC 173 ms
38,912 KB
testcase_40 AC 102 ms
44,928 KB
testcase_41 AC 250 ms
43,388 KB
testcase_42 AC 216 ms
59,496 KB
testcase_43 AC 312 ms
63,128 KB
testcase_44 AC 290 ms
62,184 KB
testcase_45 AC 203 ms
213,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (q, y) = (c[0], c[1]);
        var s = ReadLine().Split();
        var min = Calc(s, 0);
        var max = Calc(s, y);
        if (min > y || max < y)
        {
            WriteLine(-1);
            return;
        }
        var ng = -1L;
        var ok = y;
        while (ok - ng > 1)
        {
            var mid = (ok + ng) / 2;
            if (Calc(s, mid) >= y) ok = mid;
            else ng = mid;
        }
        if (Calc(s, ok) == y) WriteLine(ok);
        else WriteLine(-1);
    }
    static long Calc(string[] s, long x)
    {
        var stack = new Stack<long>();
        foreach (var si in s)
        {
            if (si == "+")
            {
                stack.Push(stack.Pop() + stack.Pop());
            }
            else if (si == "min")
            {
                stack.Push(Math.Min(stack.Pop(), stack.Pop()));
            }
            else if (si == "max")
            {
                stack.Push(Math.Max(stack.Pop(), stack.Pop()));
            }
            else if (si == "X")
            {
                stack.Push(x);
            }
            else
            {
                stack.Push(long.Parse(si));
            }
        }
        return stack.Pop();
    }
}
0