F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Harry Potter and the Binary Kingdom

Time Limit: 5000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 412    Accepted Submission(s): 57


Problem Description
After defeating the Voldemort, Harry is enjoying his senior year in Hogwarts with his friends. They decide to make a graduation trip, using their newest magical broom. In the journey, Harry is trapped in a Kingdom named Binary Kingdom, maybe because the smart but isolated people still have no idea of the great reputation of this young wizard. Loving numbers and binary very much, the subjects of Binary Kingdom claim only Harry solve the problem can he leave there.

The problem begins with an empty number multi-set, with six kinds of operation:

1. INS M: insert M into the set
2. DEL M: delete all numbers equal to M if any one exists; otherwise report ¡°Del error¡±
3. ADD M: increase the value of every number by M
4. SUB M: decrease the value of every number by M if after decreasing no number will be less than zero; otherwise report ¡°Sub error¡±
5. QNUM M: query how many numbers equal to M in the set
6. QBIT M: query how many numbers whose M-th bit is 1 in its binary, M is counting from lower to higher, beginning with 0

Though our brave Harry Potter can proficient in many fields, he is not good at math, now, it¡¯s your time.
 

Input
The first line contains a single integer T, indicating the number of test cases.
Each test case begins with an integer M, following M operations.

Technical Specification

1. 1 <= T <= 12
2. 1 <= M <= 100 000
3. The QBIT operations¡¯ M will in the range [0, 17], the other five operations¡¯ M in the range [0, 1 000 000 000].
 

Output
For each test case, output the case number first, then a newline.
If the operation is QNUM or QBIT, output the number.
If the operation is invalid DEL or SUB, output ¡°Del error¡± or ¡°Sub error¡±.
After each test case, output a blank line.
 

Sample Input
1 10 INS 1 INS 2 DEL 1 INS 3 DEL 1 ADD 1 SUB 4 QNUM 2 QBIT 1 QBIT 2
 

Sample Output
Case 1: Del error Sub error 0 1 1
 

Author
iSea@WHU
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-05-03 02:51:24, Gzip enabled