Problem A
The Beginning of the End - Part 1
Last year, the two rulers of Equestria, Princess Celestia and Princess Luna, had a row over what each perceived as the other’s lack of gratitude to her efforts. With your help, they conquered their friendship problem and a major calamity was averted.
A bigger threat looms over Equestria today.
![\includegraphics[width=0.35\textwidth ]{TBO_Sombra.png}](/problems/thebeginningoftheendpart1/file/statement/en/img-0001.png)
The feared and ruthless King Sombra, who once enslaved the entire Crystal Empire, has returned to exact his revenge. Moving quickly and stealthily through the kingdom, he usurped its throne and swiftly imprisoned the monarchs before enslaving its population. Now, with his massive army, he plans to invade the rest of Equestria!
Chief Equestrian strategists in Canterlot immediately got to
work, identifying potential locations of military significance.
Every location identified was also given two estimations; the
The strategists have created a simplified model for the conquest phase of the war:
-
Both factions alternate turns, with Equestria going first.
-
During a faction’s turn, it sends troops to capture one location that has not previously been captured by either faction.
-
The conquest phase is over when no location remains that is still not captured by either faction.
-
At the end of the conquest phase, the victor is the faction whose total military advantage is larger. If they are equal, there is no victor and the conquest has gone into a military stalemate.
A perfect strategy is one where
-
if a faction can force a victory (i.e. regardless of the other faction’s actions, there is a response that eventually leads to a victory), they will;
-
if a faction cannot force a victory, they will instead try to force a military stalemate.
Assuming a perfect strategy by both factions, it is possible to determine with certainty the outcome based on this model.
Alas, the problem is not this simple! The data is coming in live, as strategists are discovering more and more locations of military significance. Prompt response is imperative, so as each location comes in, the strategists need to know: what will be the outcome this time?
There will be a total of
Interaction
First, your program should read a single integer
Then, we repeat the following process
-
Your program should read two integers
( ) and ( ), denoting that the location identified was estimated to have an Equestrian advantage of and a Sombran advantage of . -
Your program writes a single line to the standard output containing a single character:
-
G, if a perfect strategy by both factions results in Equestrian victory,
-
B, if a perfect strategy by both factions results in Sombran victory, or
-
S, if a perfect strategy by both factions results in a military stalemate.
-
Note in particular that your program will not be provided the estimates for the next location until you have provided the response for the current set of locations.
After you have provided all
After giving each response, do not forget to output end of line and flush the output. To do this, use:
-
fflush(stdout) or cout.flush() in C++;
-
System.out.flush() in Java;
-
stdout.flush() in Python;
-
see documentation for other languages.
Sample interaction
Your output (standard output) |
Kattis’ answer (standard input) |
Interpretation |
|
There will be a total of |
|
|
The first location has Equestrian advantage
|
|
|
As Equestria goes first, Equestrian victory is obvious: they simply send troops to capture the only location. |
|
|
The second location has Equestrian advantage
|
|
|
Now, Sombran victory is guaranteed no matter what. If
Equestria sends troops to capture the first location,
Sombran forces will capture the second, and Sombra wins
with |
|
|
The third location has Equestrian advantage
|
|
|
Equestria cannot force a victory, but they can force a military stalemate. One way is to go for the first location. Now, Sombran forces can choose either the second or third location. Choosing the third location results in Equestrian victory, so Sombran forces will instead force a military stalemate by choosing the second location. |
|
|
The fourth location has Equestrian advantage
|
|
|
Now Equestria can force a victory. One way is to go
for the fourth location. Sombran forces will get two of
the remaining locations so their maximum possible
military advantage is |
|
|
The fifth location has Equestrian advantage
|
|
|
Equestria can still force a victory. One way is to go
for the fourth location. Sombran forces will get two of
the remaining locations so their maximum possible
military advantage is |