CF1455G.Forbidden Value

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp is editing a complicated computer program. First, variable xx is declared and assigned to 00 . Then there are instructions of two types:

  1. set yy vv — assign xx a value yy or spend vv burles to remove that instruction (thus, not reassign xx );
  2. if yy \dots end block — execute instructions inside the if block if the value of xx is yy and ignore the block otherwise.

if blocks can contain set instructions and other if blocks inside them.

However, when the value of xx gets assigned to ss , the computer breaks and immediately catches fire. Polycarp wants to prevent that from happening and spend as few burles as possible.

What is the minimum amount of burles he can spend on removing set instructions to never assign xx to ss ?

输入格式

The first line contains two integers nn and ss ( 1n21051 \le n \le 2 \cdot 10^5 , 1s21051 \le s \le 2 \cdot 10^5 ) — the number of lines in the program and the forbidden value of xx .

The following nn lines describe the program. Each line is one of three types:

  1. set yy vv (0y2105,1v109)(0 \le y \le 2 \cdot 10^5, 1 \le v \le 10^9) ;
  2. if yy (0y2105)(0 \le y \le 2 \cdot 10^5) ;
  3. end.

Each if instruction is matched by an end instruction. Each end instruction has an if instruction to match.

输出格式

Print a single integer — the minimum amount of burles Polycarp can spend on removing set instructions to never assign xx to ss .

输入输出样例

  • 输入#1

    5 1
    set 1 10
    set 2 15
    if 2
    set 1 7
    end

    输出#1

    17
  • 输入#2

    7 2
    set 3 4
    if 3
    set 10 4
    set 2 7
    set 10 1
    end
    set 4 2

    输出#2

    4
  • 输入#3

    9 200
    if 0
    set 5 5
    if 5
    set 100 13
    end
    if 100
    set 200 1
    end
    end

    输出#3

    1
  • 输入#4

    1 10
    set 1 15

    输出#4

    0
首页