Degrees
The latest version of Python you should use in this course is Python 3.12.
Write a program that determines how many “degrees of separation” apart two actors are.
$ python degrees.py large
Loading data...
Data loaded.
Name: Emma Watson
Name: Jennifer Lawrence
3 degrees of separation.
1: Emma Watson and Brendan Gleeson starred in Harry Potter and the Order of the Phoenix
2: Brendan Gleeson and Michael Fassbender starred in Trespass Against Us
3: Michael Fassbender and Jennifer Lawrence starred in X-Men: First Class
When to Do It
How to Get Help
- Ask questions via Ed!
- Ask questions via any of CS50’s communities!
Background
According to the Six Degrees of Kevin Bacon game, anyone in the Hollywood film industry can be connected to Kevin Bacon within six steps, where each step consists of finding a film that two actors both starred in.
In this problem, we’re interested in finding the shortest path between any two actors by choosing a sequence of movies that connects them. For example, the shortest path between Jennifer Lawrence and Tom Hanks is 2: Jennifer Lawrence is connected to Kevin Bacon by both starring in “X-Men: First Class,” and Kevin Bacon is connected to Tom Hanks by both starring in “Apollo 13.”
We can frame this as a search problem: our states are people. Our actions are movies, which take us from one actor to another (it’s true that a movie could take us to multiple different actors, but that’s okay for this problem). Our initial state and goal state are defined by the two people we’re trying to connect. By using breadth-first search, we can find the shortest path from one actor to another.
Getting Started
- Download the distribution code from https://cdn.cs50.net/ai/2023/x/projects/0/degrees.zip and unzip it.
Understanding
The distribution code contains two sets of CSV data files: one set in the large
directory and one set in the small
directory. Each contains files with the same names, and the same structure, but small
is a much smaller dataset for ease of testing and experimentation.
Each dataset consists of three CSV files. A CSV file, if unfamiliar, is just a way of organizing data in a text-based format: each row corresponds to one data entry, with commas in the row separating the values for that entry.
Open up small/people.csv
. You’ll see that each person has a unique id
, corresponding with their id
in IMDb’s database. They also have a name
, and a birth
year.
Next, open up small/movies.csv
. You’ll see here that each movie also has a unique id
, in addition to a title
and the year
in which the movie was released.
Now, open up small/stars.csv
. This file establishes a relationship between the people in people.csv
and the movies in movies.csv
. Each row is a pair of a person_id
value and movie_id
value. The first row (ignoring the header), for example, states that the person with id 102 starred in the movie with id 104257. Checking that against people.csv
and movies.csv
, you’ll find that this line is saying that Kevin Bacon starred in the movie “A Few Good Men.”
Next, take a look at degrees.py
. At the top, several data structures are defined to store information from the CSV files. The names
dictionary is a way to look up a person by their name: it maps names to a set of corresponding ids (because it’s possible that multiple actors have the same name). The people
dictionary maps each person’s id to another dictionary with values for the person’s name
, birth
year, and the set of all the movies
they have starred in. And the movies
dictionary maps each movie’s id to another dictionary with values for that movie’s title
, release year
, and the set of all the movie’s stars
. The load_data
function loads data from the CSV files into these data structures.
The main
function in this program first loads data into memory (the directory from which the data is loaded can be specified by a command-line argument). Then, the function prompts the user to type in two names. The person_id_for_name
function retrieves the id for any person (and handles prompting the user to clarify, in the event that multiple people have the same name). The function then calls the shortest_path
function to compute the shortest path between the two people, and prints out the path.
The shortest_path
function, however, is left unimplemented. That’s where you come in!
Specification
Complete the implementation of the shortest_path
function such that it returns the shortest path from the person with id source
to the person with the id target
.
- Assuming there is a path from the
source
to thetarget
, your function should return a list, where each list item is the next(movie_id, person_id)
pair in the path from the source to the target. Each pair should be a tuple of two strings.- For example, if the return value of
shortest_path
were[(1, 2), (3, 4)]
, that would mean that the source starred in movie 1 with person 2, person 2 starred in movie 3 with person 4, and person 4 is the target.
- For example, if the return value of
- If there are multiple paths of minimum length from the source to the target, your function can return any of them.
- If there is no possible path between two actors, your function should return
None
. - You may call the
neighbors_for_person
function, which accepts a person’s id as input, and returns a set of(movie_id, person_id)
pairs for all people who starred in a movie with a given person.
You should not modify anything else in the file other than the shortest_path
function, though you may write additional functions and/or import other Python standard library modules.
Hints
- While the implementation of search in lecture checks for a goal when a node is popped off the frontier, you can improve the efficiency of your search by checking for a goal as nodes are added to the frontier: if you detect a goal node, no need to add it to the frontier, you can simply return the solution immediately.
- You’re welcome to borrow and adapt any code from the lecture examples. We’ve already provided you with a file
util.py
that contains the lecture implementations forNode
,StackFrontier
, andQueueFrontier
, which you’re welcome to use (and modify if you’d like).
Testing
If you’d like, you can execute the below (after setting up check50
on your system) to evaluate the correctness of your code. This isn’t obligatory; you can simply submit following the steps at the end of this specification, and these same tests will run on our server. Either way, be sure to compile and test it yourself as well!
check50 ai50/projects/2024/x/degrees
Execute the below to evaluate the style of your code using style50
.
style50 degrees.py
Remember that you may not import any modules (other than those in the Python standard library) other than those explicitly authorized herein. Doing so will not only prevent check50
from running, but will also prevent submit50
from scoring your assignment, since it uses check50
. If that happens, you’ve likely imported something disallowed or otherwise modified the distribution code in an unauthorized manner, per the specification. There are certainly tools out there that trivialize some of these projects, but that’s not the goal here; you’re learning things at a lower level. If we don’t say here that you can use them, you can’t use them.
How to Submit
Beginning 2024-01-01T00:00:00-05:00, the course has transitioned to a new submission platform. If you had not completed CS50 AI prior to that time, you must join the new course pursuant to Step 1, below, and also must resubmit all of your past projects using the new submission slugs to import their scores. We apologize for the inconvenience, but hope you feel that access to check50
, which is new for 2024, is a worthwhile trade-off for it, here!
- Visit this link, log in with your GitHub account, and click Authorize cs50. Then, check the box indicating that you’d like to grant course staff access to your submissions, and click Join course.
- Install Git and, optionally, install
submit50
. - If you’ve installed
submit50
, executesubmit50 ai50/projects/2024/x/degrees
Otherwise, using Git, push your work to
https://github.com/me50/USERNAME.git
, whereUSERNAME
is your GitHub username, on a branch calledai50/projects/2024/x/degrees
.
If you submit your code directly using Git, rather than submit50
, do not include either the large
or small
directories as part of your submission. submit50
will automatically exclude these for you. You should only include files you are actually instructed to modify per the specification above.
Work should be graded within five minutes. You can then go to https://cs50.me/cs50ai to view your current progress!
Acknowledgements
Information courtesy of IMDb. Used with permission.