結果

問題 No.2927 Reverse Polish Equation
ユーザー tnodinotnodino
提出日時 2024-10-05 16:34:24
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 2,244 bytes
コンパイル時間 15,957 ms
コンパイル使用メモリ 379,064 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-10-16 00:22:03
合計ジャッジ時間 23,896 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 115 ms
5,248 KB
testcase_13 AC 199 ms
7,552 KB
testcase_14 AC 137 ms
5,888 KB
testcase_15 AC 191 ms
7,424 KB
testcase_16 AC 61 ms
5,248 KB
testcase_17 AC 257 ms
9,172 KB
testcase_18 AC 322 ms
11,008 KB
testcase_19 AC 19 ms
5,248 KB
testcase_20 AC 255 ms
9,088 KB
testcase_21 AC 403 ms
13,168 KB
testcase_22 AC 36 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 346 ms
11,560 KB
testcase_28 AC 284 ms
10,112 KB
testcase_29 AC 37 ms
5,248 KB
testcase_30 AC 326 ms
11,136 KB
testcase_31 AC 22 ms
5,248 KB
testcase_32 AC 70 ms
5,248 KB
testcase_33 AC 136 ms
5,760 KB
testcase_34 AC 171 ms
6,912 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 334 ms
11,264 KB
testcase_37 AC 107 ms
5,248 KB
testcase_38 AC 393 ms
12,672 KB
testcase_39 AC 151 ms
6,272 KB
testcase_40 AC 327 ms
10,972 KB
testcase_41 AC 261 ms
9,344 KB
testcase_42 AC 107 ms
13,916 KB
testcase_43 AC 104 ms
14,204 KB
testcase_44 AC 116 ms
14,208 KB
testcase_45 AC 99 ms
13,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#[fastout]
#[allow(non_snake_case)]
fn main() {
    input! {
        (Q, Y): (usize, isize),
        s: [String; Q],
    }
    assert!(1 <= Q && Q <= 200_000);
    assert!(0 <= Y && Y <= 100_000_000_000_000);
    for i in 0..Q {
        match s[i].parse::<isize>() {
            Ok(x) => {assert!(0 <= x && x <= 1_000_000_000)},
            Err(_) => {assert!(["X", "+", "min", "max"].contains(&s[i].as_str()))},
        };
    }
    let mut ng = -1;
    let mut ok = Y;
    for _ in 0..100 {
        let mid = (ok + ng) / 2;
        let mut stc = Vec::new();
        for i in 0..Q {
            if s[i] == "X" {
                stc.push(mid);
            }
            else if s[i] == "+" {
                let x = stc.pop().unwrap();
                let y = stc.pop().unwrap();
                stc.push(x + y);
            }
            else if s[i] == "min" {
                let x = stc.pop().unwrap();
                let y = stc.pop().unwrap();
                stc.push(min(x, y));
            }
            else if s[i] == "max" {
                let x = stc.pop().unwrap();
                let y = stc.pop().unwrap();
                stc.push(max(x, y));
            }
            else {
                stc.push(s[i].parse::<isize>().unwrap());
            }
        }
        assert!(stc.len() == 1);
        if stc[0] >= Y {
            ok = mid;
        }
        else {
            ng = mid;
        }
    }
    let mut stc = Vec::new();
    for i in 0..Q {
        if s[i] == "X" {
            stc.push(ok);
        }
        else if s[i] == "+" {
            let x = stc.pop().unwrap();
            let y = stc.pop().unwrap();
            stc.push(x + y);
        }
        else if s[i] == "min" {
            let x = stc.pop().unwrap();
            let y = stc.pop().unwrap();
            stc.push(min(x, y));
        }
        else if s[i] == "max" {
            let x = stc.pop().unwrap();
            let y = stc.pop().unwrap();
            stc.push(max(x, y));
        }
        else {
            stc.push(s[i].parse::<isize>().unwrap());
        }
    }
    if stc[0] != Y {
        println!("-1");
    }
    else {
        println!("{}", ok);
    }
}
0