本课程尚无中文翻译,以下显示英文原文。
Video Solution
By Melody Yu
Video Solution Code
Explanation
Since there are only cows, there are distinct possible orderings, which is small enough for us to try all of them and still pass the problem in time.
If we generate them in alphabetical order and find an ordering that satisfies all the given constraints, then we can stop and print out the answer right then and there.
Implementation
Time Complexity:
from typing import List# list of cows, in alphabetical orderCOWS = ["Beatrice", "Belinda", "Bella", "Bessie", "Betsy", "Blue", "Buttercup", "Sue"]orderings = []def build(ordering: List[str]):# finished building permutation
Solution With Graphs
This solution is covered in the Introduction to Graphs module.