Question: Using C++, C, or Python Suppose there are two types of professional wrestlers: Babyfaces (good guys) and Heels (bad guys). Between any pair of professional

Using C++, C, or Python

Suppose there are two types of professional wrestlers: Babyfaces (good guys) and Heels (bad guys). Between any pair of professional wrestlers, there may or may not be a rivalry. Suppose we have n wrestlers and we have a list of r pairs of rivalries.

Current Pseudocode:

Rivalry(G) { for each vertex u in G.V { u.color = WHITE; } Q = {G[0]} while any of the vertex label is still white {} while (Q is not empty) { u = DEQUEUE(Q) for each v in G.Adj[u] { if (v.color == WHITE) { if (u.label == "Babyfaces") { v.label = "Heels" } else if (u.label == "Heels") { v.label = "Babyfaces" } else { v.label = "Babyfaces" } v.p = u ENQUEUE(Q,v) } else { if (u.label == v.label){ return impossible } } } } } }

Babyfaces vs Heels.

Input: Input is read in from a file specified in the command line at run time. The file contains the number of wrestlers, n, followed by their names, the number of rivalries r and rivalries listed in pairs. Note: The file only contains one list of rivalries

Output: Results are outputted to the terminal.

  • Yes, if possible followed by a list of the Babyface wrestlers and a list of the Heels .

  • No, if impossible.

  1. Sample Input file:

    5 Ace Duke Jax Biggs Stone 6 Ace Duke Ace Biggs Jax Duke Stone Biggs Stone Duke Biggs Jax

    Sample Output:

    Yes Babyfaces: Ace Jax Stone Heels: Biggs Duke

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!