CF1913C.Game with Multiset

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In this problem, you are initially given an empty multiset. You have to process two types of queries:

  1. ADD xx — add an element equal to 2x2^{x} to the multiset;
  2. GET ww — say whether it is possible to take the sum of some subset of the current multiset and get a value equal to ww .

输入格式

The first line contains one integer mm ( 1m1051 \le m \le 10^5 ) — the number of queries.

Then mm lines follow, each of which contains two integers tit_i , viv_i , denoting the ii -th query. If ti=1t_i = 1 , then the ii -th query is ADD viv_i ( 0vi290 \le v_i \le 29 ). If ti=2t_i = 2 , then the ii -th query is GET viv_i ( 0vi1090 \le v_i \le 10^9 ).

输出格式

For each GET query, print YES if it is possible to choose a subset with sum equal to ww , or NO if it is impossible.

输入输出样例

  • 输入#1

    5
    1 0
    1 0
    1 0
    2 3
    2 4

    输出#1

    YES
    NO
  • 输入#2

    7
    1 0
    1 1
    1 2
    1 10
    2 4
    2 6
    2 7

    输出#2

    YES
    YES
    YES
首页