結果

問題 No.2927 Reverse Polish Equation
ユーザー loop0919loop0919
提出日時 2024-09-25 09:57:08
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,321 bytes
コンパイル時間 14,581 ms
コンパイル使用メモリ 402,864 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-10-16 00:21:13
合計ジャッジ時間 18,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 0 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 2 ms
5,248 KB
testcase_12 AC 38 ms
5,248 KB
testcase_13 AC 71 ms
7,680 KB
testcase_14 AC 47 ms
5,888 KB
testcase_15 AC 64 ms
7,424 KB
testcase_16 AC 23 ms
5,248 KB
testcase_17 AC 93 ms
9,216 KB
testcase_18 AC 119 ms
11,008 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 95 ms
9,120 KB
testcase_21 AC 139 ms
13,056 KB
testcase_22 AC 12 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 134 ms
11,604 KB
testcase_28 AC 131 ms
9,968 KB
testcase_29 AC 17 ms
5,248 KB
testcase_30 AC 139 ms
10,992 KB
testcase_31 AC 7 ms
5,248 KB
testcase_32 AC 32 ms
5,248 KB
testcase_33 AC 59 ms
5,760 KB
testcase_34 AC 75 ms
6,816 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 97 ms
11,248 KB
testcase_37 AC 49 ms
5,248 KB
testcase_38 AC 163 ms
12,672 KB
testcase_39 AC 65 ms
6,272 KB
testcase_40 AC 135 ms
11,008 KB
testcase_41 AC 112 ms
9,344 KB
testcase_42 AC 50 ms
14,056 KB
testcase_43 AC 51 ms
14,172 KB
testcase_44 AC 53 ms
14,336 KB
testcase_45 AC 44 ms
13,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::{min, max};
use proconio::input;

fn rev_polish(s: &Vec<String>, x: i64) -> i64 {
    let mut stack = Vec::<i64>::new();

    for token in s.iter() {
        match token.as_str() {
            "+" => {
                let a = stack.pop().unwrap();
                let b = stack.pop().unwrap();
                stack.push(a + b);
            },
            "min" => {
                let a = stack.pop().unwrap();
                let b = stack.pop().unwrap();
                stack.push(min(a, b));
            },
            "max" => {
                let a = stack.pop().unwrap();
                let b = stack.pop().unwrap();
                stack.push(max(a, b));
            },
            "X" => {
                stack.push(x);
            },
            _ => {
                stack.push(token.parse::<i64>().unwrap());
            }
        }
    }
    stack.pop().unwrap()
}

fn main() {
    input! {
        n: usize,
        y: i64,
        s: [String; n],
    }

    let mut ok: i64 = y;
    let mut ng: i64 = -1;

    while ok - ng > 1 {
        let mid = (ok + ng) / 2;
        if rev_polish(&s, mid) >=  y {
            ok = mid;
        } else {
            ng = mid;
        }
    }

    if rev_polish(&s, ok) == y {
        println!("{}", ok);
    } else {
        println!("-1");
    }
}
0