Skip to content

Latest commit

 

History

History
366 lines (253 loc) · 18.8 KB

README.md

File metadata and controls

366 lines (253 loc) · 18.8 KB

Qualification Round - Hash Code 2022

Solutions and code for the Qualification Round of Hash Code 2022 Mentorship and Teamwork.

The Online Qualifications Livestream was available here.

Text / images (except # Scores) is taken verbatim from the 'Qualification Round - Hash Code 2022' website.

Problem

Picture with four laptops and letters T E A M illustrating teamwork

Introduction

Work is so much more fun when we are part of a team! By combining our different skills, we can be more creative, efficient and productive. And more importantly, when working together we share... not only pizzas, but also knowledge. We can learn from each other, improve our own skills and gain experience.

Teamwork is one of the main ingredients of Hash Code, especially in this challenge!

So, are you up for the challenge?

Task

Summary

You are given a list of contributors, who have already mastered various skills, and a list of projects with different skill requirements. Contributors can improve their skills by completing projects and can mentor each other to work is roles in which they couldn't succeed on their own. Your task is to assign contributors to project roles that fit their qualifications and maximize the score for completed projects.

Problem description

Contributors

There are N contributors. Each contributor has a name and one or more skills at a specific level (0, 1, 2, ...). Not possessing a skill is equivalent to possessing a skill at level 0.

For example, three contributors could have the following skills:

- Anna: Python level 3
- Bob: C++ level 3
- Maria: HTML level 4, CSS level 6

Three contributors and their skills, as described in the example above.

Projects

There are M projects. Each project is described by:

  • its name
  • the duration of the project in days (how long it takes to complete a project once it is started)
  • the score awarded for completing the project
  • the “best before” time in days – if the project last day of work is strictly before the indicated day, it earns the full score. If it’s late (that is, the project is still worked on during or after its "best before day"), it gets one point less for each day it is late, but no less than zero points. See also the example in the "Assignments" section below.
  • a list of roles for contributors working on the project

Each project has one or more roles that need to be filled by contributors. Each role requires one skill at a specific level, and can be filled by a single contributor. Each contributor can fill at most one role on a single project.

For example, a project called "WebServer" could have the following roles:

- Role 0 requiring Python level 3
- Role 1 requiring HTML level 1
- Role 2 requiring CSS level 5

The 3 roles that need to be filled for project WebServer, as described in the example above.

Filling roles and mentorship

A contributor can be assigned to a project for a specific role (at most one role in a single project), if they either:

  • have the skill at the required level or higher; or
  • have the skill at exactly one level below the required level, only if another contributor on the same project (assigned to another role), has this skill at the required level or higher. In this case, the contributor will be mentored by their colleague :)

One contributor can mentor multiple people at once, including for the same skill. A contributor can mentor and be mentored by other contributors at the same time.

Not possessing a skill is equivalent to possessing a skill at level 0. So a contributor can work on a project and be assigned to a role with requirement C++ level 1 if they don’t know any C++, provided that somebody else on the team knows C++ at level 1 or higher.

For example:

For the project WebServer above we could make the following assignments:

Role 0 (requires Python level 3) is assigned to Anna (Python level 3).
- Anna has the same level in Python as required.

Role 1 (requires HTML level 1) is assigned to Bob (C++ level 3).
- Bob has level 0 in HTML. Since his level is only one below required, he can be assigned, but must be mentored by another contributor who knows HTML at level 1 or above.

Role 2 (requires CSS level 5) is assigned to Maria (HTML level 4, CSS level 6)
- Maria has a higher level than the one required for CSS.
- Maria can mentor Bob on HTML since she has HTML level 4.
Assignments

Each contributor can start working on day 0 and can be working on at most one project at the same time. Once the work on a project starts, its contributors will be working on it the number of days equal to its duration and then become available to work on other projects.

For example, if the project WebServer has duration of 7 days and starts on day 0, the contributors assigned to it will be working on it during: day 0, day 1, day 2, day 3, day 4, day 5 and day 6. On day 7 the project is already completed. Contributors assigned to it can work on another project on day 7.
Learning

Completing a project is a learning opportunity, especially for the contributors working on the edge of their existing abilities! When each project is completed:

  • contributors working in roles where the required skill level was equal or higher than their current level improve their skill level by one level
  • other contributors keep their skill level

Note that mentoring someone doesn't increase the level of the skill for the mentor.

For example:

In the assignments above:

- Anna improves Python skill to level 4;
- Bob improves HTML skill to level 1;
- Maria improves neither the CSS skill (because Maria’s CSS is already at a level higher than required) nor the HTML skill (because her role required CSS, not HTML).

Input

Input Data Contributors Projects Roles
A - An example 3 3 4
B - Better start small 50 100 36
C - Collaboration 1500 1000 200
D - Dense schedule 500 1000 188
E - Exceptional skills 800 10000 800
F - Find great mentors 1000 19413 500

File Format

Each input data set is provided in a plain text file. The file contains only ASCII characters with lines ending with a single '\n' character (also called “UNIX-style” line endings). When multiple strings and numbers are given in one line, they are separated by a single space between each two elements.

The first line of the data set contains:

  • an integer C (1 ≤ C≤ 10^5) – the number of contributors,
  • an integer P (1 ≤ P ≤ 10^5) – the number of projects.

This is followed by C sections describing individual contributors. Each contributor is described by the following lines:

  • the first line contains:
    • the contributor's name (ASCII string of at most 20 characters, all of which are lowercase or uppercase English alphabet letters a-z and A-Z, or numbers 0-9),
  • an integer N (1 ≤ N ≤ 100) - the number of skills of the contributor.
  • the next N lines describe individual skills of the contributor. Each such line contains:
    • the name of the skill (ASCII string of at most 20 characters, all of which are lowercase or uppercase English alphabet letters a-z and A-Z, numbers 0-9, dashes '-' or pluses '+'),
    • an integer Li (1 ≤ Li ≤ 10) - skill level.

This is followed by P sections describing individual projects. Each project is described by the following lines:

  • the first line contains:
    • the name of the project (ASCII string of at most 20 characters, all of which are lowercase or uppercase English alphabet letters a-z and A-Z or numbers 0-9),
    • an integer Di (1 ≤ Di ≤ 10^5) – the number of days it takes to complete the project,
    • an integer Si (1 ≤ Si ≤ 10^5) – the score awarded for project’s completion,
    • an integer Bi (1 ≤ Bi ≤ 10^5) – the “best before” day for the project,
    • an integer Ri (1 ≤ Ri ≤ 100) – the number of roles in the project.
  • the next Ri lines describe the skills in the project:
    • a string Xk – the name of the skill (ASCII string of at most 20 characters, all of which are lowercase or uppercase English alphabet letters a-z and A-Z, numbers 0-9, dashes '-' or pluses '+'),
    • an integer Lk (1 ≤ Lk ≤ 100) – the required skill level.

Example Input

3 3                # 3 contributors, 3 projects
Anna 1             # contributor Anna
C++ 2              #   has C++ skill at level 2
Bob 2              # contributor Bob
HTML 5             #   has HTML skill at level 5
CSS 5              #   has CSS skill at level 5 
Maria 1            # contributor Maria
Python 3           #   has skill Python at level 3
Logging 5 10 5 1   # project Logging needs 1 contributor
C++ 3              #   that needs to have C++ at level ≥ 3 (2 with mentoring)
WebServer 7 10 7 2 # project WebServer needs 2 contributors
HTML 3             #   first contributor needs to have HTML at level ≥ 3 (2 with mentoring)
C++ 2              #   second contributor needs to have C++ at level ≥ 2 (1 with mentoring)
WebChat 10 20 20 2 # project WebChat needs 2 contributors
Python 3           #   first contributor needs to have Python at level ≥ 3 (2 with mentoring)
HTML 3             #   second contributor needs to have HTML at level ≥ 3 (2 with mentoring)

Three contributors and their skills, as described in the input above. The 3 projects that are described in the input.

Submission

The submission file should be a plaintext file containing only ASCII characters.

File format

Your submission describes which projects each contributor is going to work on and in which role.

The first line should contain the integer E (0 ≤ E ≤ P) - the number of executed projects.

This should be followed by E sections each describing one completed project. Each project should be described by two lines:

  • A single line containing the name of the project (as it appears in the input file). Each project can be mentioned at most once in the submission file.
  • A single line containing the names of the contributors assigned to each of the project roles, separated by single spaces and listed in the same order as the roles appear in the input file.

Example Submission

3           # 3 projects are planned
WebServer   # assignments for project WebServer
Bob Anna    # Bob → first role, Anna → second role
Logging     # assignments for project Logging
Anna        # Anna → first role
WebChat     # assignments for project WebChat
Maria Bob   # Maria → first role, Bob → second role

Scoring

Each contributor can only work on one project at a time. If one contributor is assigned to multiple projects, the contributor will work on them in the same order as they appear in the submission file. Each project starts immediately on the first day on which all the assigned contributors are available.

Projects execution timeline based on the input data set and the submission from the previous sections.

If some project assignment is invalid because the assigned contributor does not have the required skill level for the project after finishing all previously assigned projects, the submission is considered invalid and will not be scored.

Each project that is completed successfully receives its assigned score, as defined in the input file, minus penalty points for any delay. If a project is completed after its “best before” time, it gets one point less for each day it is late (but no less than zero points). Note that even if a project scores zero points, the assigned contributors will work on it (and may improve their skills thanks to it).

The total score is the sum of scores for all correctly completed projects.

Note that there are multiple data sets representing separate instances of the problem. The final score for your team will be the sum of your best scores for the individual data sets.

Example Scoring

The example submission results in this timeline:

Day 0 to day 6: Bob and Anna are working on project WebServer (they both have the skills required).

  • As of project completion, Anna levels up in C++: level 2 → 3;
  • Bob doesn't level up because his HTML skill (level 5) is of a higher level than required for the project (level 3).

Project WebServer's last day of work is day 6, so it completes strictly before its "best before" day 7 and receives the full score: 10 points.

Day 7 to 11: Anna is working on the project Logging (she has sufficient C++ skill after completing project WebServer).

  • As of project completion, Anna levels up in C++: level 3 → 4;

Project Logging's last day of work is 11 (so it's completed strictly before day 12), while its "best before" day was 5. It is late by (12−5=) 7 days and receives a score of: (10−7=) 3 points.

Day 7 to 16: Maria and Bob are working on project WebChat

  • As of project completion, Maria levels up in Python: level 3 → 4;
  • Bob doesn't level up in HTML because his skills are of a higher level than required for the project (HTML level 5, required 3)

Project WebChat's last day of work is day 16, while the "best before" day is 20, so it receives the full score: 20 points.

In the end, projects Webserver (10 points), Logging (3 points) and WebChat (20 points) are completed, resulting in a total score of 33 points.

Scores & Insights

Overall 3,224,184 points.

Summing up all the best scores per data set a total of 4,813,509 points was possible. The top team Make love, not war won with 4,220,236 points.

See the complete scoreboard for the Online Qualifications.

A - An example

The submission scored 33 points. Insights about this submission:

  • projects completed: 3 (100% of all projects)
  • projects completed before their "best before" time in days (scoring full points): 2 (66% of all projects)
  • projects completed but scoring 0 points (because they were completed too long after their "best before" time): 0 (0% of all projects)
  • number of times a contributor got mentored on a project: 0
  • number of times a contributor increased their skill level thanks to completing a project: 3
  • contributors were waiting for their next project to start 1.40 days on average
  • 3 contributors out of 3 worked on at least one project

B - Better start small

The submission scored 800,991 points. Insights about this submission:

  • projects completed: 73 (73% of all projects)
  • projects completed before their "best before" time in days (scoring full points): 73 (73% of all projects)
  • projects completed but scoring 0 points (because they were completed too long after their "best before" time): 0 (0% of all projects)
  • number of times a contributor got mentored on a project: 5
  • number of times a contributor increased their skill level thanks to completing a project: 79
  • contributors were waiting for their next project to start 19.03 days on average
  • 49 contributors out of 50 worked on at least one project

The top score of this data set during the qualification round was 1,005,020 by team <(OvO)>

C - Collaboration

The submission scored 161,820 points. Insights about this submission:

  • projects completed: 1000 (100% of all projects)
  • projects completed before their "best before" time in days (scoring full points): 32 (3% of all projects)
  • projects completed but scoring 0 points (because they were completed too long after their "best before" time): 952 (95% of all projects)
  • number of times a contributor got mentored on a project: 0
  • number of times a contributor increased their skill level thanks to completing a project: 15151
  • contributors were waiting for their next project to start 11658.60 days on average
  • 1494 contributors out of 1500 worked on at least one project

The top score of this data set during the qualification round was 288,508 by team Scheming Kittens

D - Dense schedule

The submission scored 173,626 points. Insights about this submission:

  • projects completed: 113 (11% of all projects)
  • projects completed before their "best before" time in days (scoring full points): 113 (11% of all projects)
  • projects completed but scoring 0 points (because they were completed too long after their "best before" time): 0 (0% of all projects)
  • number of times a contributor got mentored on a project: 6
  • number of times a contributor increased their skill level thanks to completing a project: 328
  • contributors were waiting for their next project to start 35.94 days on average
  • 325 contributors out of 500 worked on at least one project

The top score of this data set during the qualification round was 674,945 by team Make love, not war

E - Exceptional skills

The submission scored 1,614,315 points. Insights about this submission:

  • projects completed: 6000 (60% of all projects)
  • projects completed before their "best before" time in days (scoring full points): 5897 (58% of all projects)
  • projects completed but scoring 0 points (because they were completed too long after their "best before" time): 86 (0% of all projects)
  • number of times a contributor got mentored on a project: 0
  • number of times a contributor increased their skill level thanks to completing a project: 799
  • contributors were waiting for their next project to start 53.17 days on average
  • 800 contributors out of 800 worked on at least one project

The top score of this data set during the qualification round was 1,650,488 by team QR-Coders

F - Find great mentors

The submission scored 473,399 points. Insights about this submission:

  • projects completed: 4435 (22% of all projects)
  • projects completed before their "best before" time in days (scoring full points): 2868 (14% of all projects)
  • projects completed but scoring 0 points (because they were completed too long after their "best before" time): 1553 (7% of all projects)
  • number of times a contributor got mentored on a project: 67737
  • number of times a contributor increased their skill level thanks to completing a project: 82701
  • contributors were waiting for their next project to start 20.93 days on average
  • 1000 contributors out of 1000 worked on at least one project

The top score of this data set during the qualification round was 1,194,515 by team Proof by Submission