Skip to content

prajayrajsinghrathore/JulyCodingChallenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

JulyCodingChallenge

July Coding Challenge - Netcompany

Problem Statement

You are opening a small pizzeria. Because it is so small, you decided to offer only one type of pizza. Now, you must decide what ingredients to include (peppers? tomatoes? both?).

Everyone has their pizza preferences. Each of your potential clients has some ingredients they like and maybe some ingredients they dislike. Each client will come to your pizzeria if both conditions are true:

  1. all the ingredients they like are on the pizza, and
  2. none of the ingredients they dislike are on the pizza

Each client is OK with additional ingredients they neither like nor dislike being present on the pizza. Your task is to choose which ingredients to put on your only pizza type to maximize the number of clients who will visit your pizzeria.

Input

  • The first line contains one integer $1 \leq C \leq 10^5$
  • The following 2 X C lines describe the client's preferences in the following format
    • First line contains integer $1 \leq L \leq 5$, followed by $L$ names of ingredients a client likes, delimited by spaces.
    • Second line contains integer $0 \leq D \leq 5$, followed by $D$ names of ingredients a client dislikes, delimited by spaces.

Each ingredient name consists of between 1 and 15 ASCII characters. Each character is one of the lowercase letters (a-z) or a digit (0-9).

Submission

The submission should consist of one line of a single number $0 \leq N$ followed by a list of $N$ ingredients to put on the only pizza available in the pizzeria, separated by spaces. The list of ingredients should contain only the ingredients mentioned by at least one client, without duplicates.

Scoring

A solution scores one point for each client who comes to its pizzeria. A client will come to your pizzeria if all the ingredients they like are on the pizza and none they dislike are on it.

Sample

Sample Input

3 2 cheese peppers 0 1 basil 1 pineapple 2 mushrooms tomatoes 1 basil

Sample Output

4 cheese mushrooms, tomatoes peppers

In the Sample Input, there are 3 potential clients:

  • The clients like 2 ingredients, cheese and peppers and does not like to dislike anything
  • The second client likes only basil and dislikes only pineapple.
  • The third client likes mushrooms and tomatoes and dislikes only basil.

In this Sample Output, the pizza uses four ingredients: cheese, mushrooms, tomatoes, and peppers.

  • The first client likes the pizza because it contains cheese and peppers, which they like.
  • The second client does not like the pizza; it does not contain basil which they like.
  • The third client likes the pizza because it contains mushrooms and tomatoes, which they like, and does not contain basil, which they do not like.

This means that submitting this output would score 2 points because two clients (the first and third ones) would like this pizza.

About

July Coding Challenge - Netcompany

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published