Kattis the Cat enjoys clearing quests on her mobile game. Each quest has an energy consumption E, and gold reward G. However, as Kattis has become very busy lately with grading her student's problem sets, she does not have much spare time as before to keep clearing quests. As such, she has adopted a new 'greedy' strategy to clear her quests in each session as quickly as possible. With energy X for a session, she will do the following: 1. Find the largest energy quest from the current pool of quest which is smaller or equal to X, if tied, by the largest gold reward, 2. Clear the quest, removing it from current pool. Reduce energy X by E of the quest, and add up the gold reward Gearned this session. 3. Repeat steps 1 and 2 with remaining amount of energy, until energy left becomes 0, or if there are no more quests to be cleared with remaining energy. However, she is not sure if this strategy is optimal, and wants your help in determining how much she has earned in each playing session. Kattis the Cat will give a list of 2 commands: 1. add E G: add a copy of the quest with energy consumption E and gold reward G into the pool, 2. query X: using the 'greedy' quest clearing strategy described above, print out the total amount of gold Kattis the Cat earned in this session with energy X.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Code in Java

Kattis the Cat enjoys clearing quests on her mobile game. Each quest has an energy consumption E, and gold reward G. However, as Kattis has become very busy lately with grading her student’s problem sets, she does not have much spare time as before to keep clearing quests.

 

Kattis the Cat enjoys clearing quests on her mobile game. Each quest has an
energy consumption E, and gold reward G. However, as Kattis has become very
busy lately with grading her student's problem sets, she does not have much
spare time as before to keep clearing quests. As such, she has adopted a new
'greedy' strategy to clear her quests in each session as quickly as possible. With
energy X for a session, she will do the following:
1. Find the largest energy quest from the current pool of quest which is smaller
or equal to X, if tied, by the largest gold reward,
2. Clear the quest, removing it from current pool. Reduce energy X by E of the
quest, and add up the gold reward Gearned this session.
3. Repeat steps 1 and 2 with remaining amount of energy, until energy left
becomes 0, or if there are no more quests to be cleared with remaining
energy.
However, she is not sure if this strategy is optimal, and wants your help in
determining how much she has earned in each playing session. Kattis the Cat will
give a list of 2 commands:
1. add E G: add a copy of the quest with energy consumption E and gold reward
G into the pool,
2. query X: using the 'greedy' quest clearing strategy described above, print out
the total amount of gold Kattis the Cat earned in this session with energy X.
Transcribed Image Text:Kattis the Cat enjoys clearing quests on her mobile game. Each quest has an energy consumption E, and gold reward G. However, as Kattis has become very busy lately with grading her student's problem sets, she does not have much spare time as before to keep clearing quests. As such, she has adopted a new 'greedy' strategy to clear her quests in each session as quickly as possible. With energy X for a session, she will do the following: 1. Find the largest energy quest from the current pool of quest which is smaller or equal to X, if tied, by the largest gold reward, 2. Clear the quest, removing it from current pool. Reduce energy X by E of the quest, and add up the gold reward Gearned this session. 3. Repeat steps 1 and 2 with remaining amount of energy, until energy left becomes 0, or if there are no more quests to be cleared with remaining energy. However, she is not sure if this strategy is optimal, and wants your help in determining how much she has earned in each playing session. Kattis the Cat will give a list of 2 commands: 1. add E G: add a copy of the quest with energy consumption E and gold reward G into the pool, 2. query X: using the 'greedy' quest clearing strategy described above, print out the total amount of gold Kattis the Cat earned in this session with energy X.
Input
The first line contains an integer N (1 ≤ N≤2·105) denoting the number of
commands. Each of the next N lines contains a string S, denoting one of the
above commands. For the add command, two integers will follow, E and G (
1 ≤ E, G ≤ 105), denoting the energy consumption and gold reward of the quest
respectively. For the query command, one integer will follow, X (1 ≤X ≤ 10³),
denoting the amount of energy Kattis the Cat has for this session.
Output
For each query X command, print the amount of gold Kattis the Cat earned for
that session in a new line.
Sample Input 1
9
add 8 10
add 3 25
add 5 6
query 7
query 7
add 1 9
add 2 13
query 20
query 1
Sample Output 1
6
W Na
10 N
25
32
0
Transcribed Image Text:Input The first line contains an integer N (1 ≤ N≤2·105) denoting the number of commands. Each of the next N lines contains a string S, denoting one of the above commands. For the add command, two integers will follow, E and G ( 1 ≤ E, G ≤ 105), denoting the energy consumption and gold reward of the quest respectively. For the query command, one integer will follow, X (1 ≤X ≤ 10³), denoting the amount of energy Kattis the Cat has for this session. Output For each query X command, print the amount of gold Kattis the Cat earned for that session in a new line. Sample Input 1 9 add 8 10 add 3 25 add 5 6 query 7 query 7 add 1 9 add 2 13 query 20 query 1 Sample Output 1 6 W Na 10 N 25 32 0
Expert Solution
steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Time complexity
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education