77 questions · 15 question types identified
Identify which vertices should be chosen as start and/or end points to minimize route length when endpoints are flexible.
Apply both Dijkstra's algorithm for shortest paths and route inspection algorithm in the same problem, often to find pairings between odd vertices.
Find the length of an optimal Chinese postman route starting and finishing at the same specified vertex, requiring identification of odd vertices and pairing them optimally.
Find the optimal route traversing all edges at least once but starting at one vertex and finishing at a different specified vertex.
Explain why it is not possible to traverse each edge exactly once and return to the start, typically by identifying odd-degree vertices.
Determine how adding or removing an edge affects the length of the optimal Chinese postman route, requiring re-analysis of odd vertices.
Find the optimal route traversing all edges at least once where the start and/or end vertices can be chosen freely to minimize distance.
State how many times a specific vertex appears in an optimal Chinese postman route.
Find the optimal route length expressed in terms of a variable (e.g., x or y), often requiring consideration of different cases or inequalities.
Find optimal route and convert distance to time using given speed, or determine if a route is feasible within time/fuel constraints.
State a complete optimal route as a sequence of vertices, not just its length, showing which edges are repeated.
Describe or state the steps of the Chinese postman/route inspection algorithm without necessarily applying it.
Given the length of an optimal route and other constraints, work backwards to find unknown edge weights or parameters.
Find optimal route where each edge must be traversed exactly twice (e.g., for inspecting both sides of a street), differing from standard route inspection.
Classify a graph as Eulerian, semi-Eulerian, or neither based on the degrees of its vertices, with justification.