HELP for Programming Fundamentals Final Exam 04.04.2020 Problem 3. P!rates

Здраявейте,
Някой има ли идея какво не правя както тряба за да получавам само 66/100 в Judge? 
Благодаря Ви предварително!

Description

Until the "Sail" command is given you will be receiving:

  • Cities that you and your crew have targeted, with their population and gold, separated by "||".
  • If you receive a city which has been already received, you have to increase the population and gold with the given values.

After the "Sail" command, you will start receiving lines of text representing events until the "End" command is given.

Events will be in the following format:

  • "Plunder=>{town}=>{people}=>{gold}"
    • You have successfully attacked and plundered the town, killing the given number of people and stealing the respective amount of gold.
    • For every town you attack print this message: "{town} plundered! {gold} gold stolen, {people} citizens killed."
    • If any of those two values (population or gold) reaches zero, the town is disbanded.
      • You need to remove it from your collection of targeted cities and print the following message: "{town} has been wiped off the map!"
    • There will be no case of receiving more people or gold than there is in the city.
  • "Prosper=>{town}=>{gold}"
    • There has been a dramatic economic growth in the given city, increasing its treasury by the given amount of gold.
    • The gold amount can be a negative number, so be careful. If a negative amount of gold is given print: "Gold added cannot be a negative number!" and ignore the command.
    • If the given gold is a valid amount, increase the town's gold reserves by the respective amount and print the following message: "{gold added} gold added to the city treasury. {town} now has {total gold} gold."

Input

  • On the first lines, until the "Sail" command, you will be receiving strings representing the cities with their gold and population, separated by "||"
  • On the next lines, until the "End" command, you will be receiving strings representing the actions described above, separated by "=>"

Output

  • After receiving the "End" command if there are any existing settlements on your list of targets, you need to print all of them, sorted by their gold in descending order, then by their name in ascending order, in the following format:

Ahoy, Captain! There are {count} wealthy settlements to go to:

{town1} -> Population: {people} citizens, Gold: {gold} kg

   …

{town…n} -> Population: {people} citizens, Gold: {gold} kg

  • If there are no settlements left to plunder, print:

"Ahoy, Captain! All targets have been plundered and destroyed!"

Constraints

  • The initial population and gold of the settlements will be valid, 32-bit integers,
    will never be negative or exceed the respective limits.
  • The town names in the events will always be valid towns that should be on your list.

Examples

Input

Output

Tortuga||345000||1250

Santo Domingo||240000||630

Havana||410000||1100

Sail

Plunder=>Tortuga=>75000=>380

Prosper=>Santo Domingo=>180

End

Tortuga plundered! 380 gold stolen, 75000 citizens killed.

180 gold added to the city treasury. Santo Domingo now has 810 gold.

Ahoy, Captain! There are 3 wealthy settlements to go to:

Havana -> Population: 410000 citizens, Gold: 1100 kg

Tortuga -> Population: 270000 citizens, Gold: 870 kg

Santo Domingo -> Population: 240000 citizens, Gold: 810 kg

Input

Output

Nassau||95000||1000

San Juan||930000||1250

Campeche||270000||690

Port Royal||320000||1000

Port Royal||100000||2000

Sail

Prosper=>Port Royal=>-200

Plunder=>Nassau=>94000=>750

Plunder=>Nassau=>1000=>150

Plunder=>Campeche=>150000=>690

End

Gold added cannot be a negative number!

Nassau plundered! 750 gold stolen, 94000 citizens killed.

Nassau plundered! 150 gold stolen, 1000 citizens killed.

Nassau has been wiped off the map!

Campeche plundered! 690 gold stolen, 150000 citizens killed.

Campeche has been wiped off the map!

Ahoy, Captain! There are 2 wealthy settlements to go to:

Port Royal -> Population: 420000 citizens, Gold: 3000 kg

San Juan -> Population: 930000 citizens, Gold: 1250 kg

 

locations = input()
towns = {}

while not locations == "Sail":
    data = locations.split("||")
    town = data[0]
    population = int(data[1])
    gold = int(data[2])
    if town not in towns:
        towns[town] = []
        towns[town].append(population)
        towns[town].append(gold)
    else:
        towns[town][0] += population
        towns[town][1] += gold
    locations = input()

    if locations == "Sail":
        events = input()

        while not events == "End":
            actions = events.split("=>")
            action = actions[0]
            target = actions[1]
            if target not in towns:
                events = input()
                continue

            if action == "Plunder":
                people = int(actions[2])
                gold_difference = int(actions[3])
                print(f"{target} plundered! {gold_difference} gold stolen, {people} citizens killed.")
                towns[target][0] -= people
                towns[target][1] -= gold_difference
                if towns[target][0] <= 0 or towns[target][1] <= 0:
                    towns.pop(target)
                    print(f"{target} has been wiped off the map!")

            elif action == "Prosper":
                gold_difference = int(actions[2])
                if gold_difference < 0:
                    print("Gold added cannot be a negative number!")
                else:
                    towns[target][1] += gold_difference
                    print(
                        f"{gold_difference} gold added to the city treasury. {target} now has {towns[target][1]} gold.")

            events = input()
            if events == "End":
                if len(towns) > 0:
                    print(f"Ahoy, Captain! There are {len(towns)} wealthy settlements to go to:")
                    towns = dict(sorted(towns.items(), key=lambda e: (- e[1][1], e[0])))
                    for target, value in towns.items():
                        print(f"{target} -> Population: {towns[target][0]} citizens, Gold: {towns[target][1]} kg")
                else:
                    print(f"Ahoy, Captain! All targets have been plundered and destroyed!")
                break