#P13668. [GCPC 2023] Cosmic Commute
[GCPC 2023] Cosmic Commute
题目描述
A long time ago, in a galaxy far, far away, the InterCosmic Passage Company (ICPC) operates a complex railway system using light trains.
:::align{center}
A wormhole above Gallifrey, mau_king :::
Each planet has exactly one train station and each light train connects two distinct planets of the galaxy, going back and forth between them. Just recently, the InterCosmic Passage Company established a teleportation system, which is now in its testing phase. Some train stations are now extended by a wormhole. All wormholes are connected to each other, and it is possible to teleport from one wormhole to another instantaneously. To not overload the new system, each citizen of the galaxy is only allowed to teleport at most once a day.
Charlie lives on planet Gallifrey and works on planet Sontar. It is her first day of work, and she is already terribly late because her stupid alarm clock did not go off. On top of that, the new teleportation system is malfunctioning today of all days, and the destination wormhole cannot be chosen. Instead, after entering a wormhole, one is teleported to a wormhole that is chosen uniformly at random among all other wormholes. (It is impossible to be at the same train station after teleportation.)
Despite all her bad luck, Charlie is dead set on getting to work on time. Since all light trains are very slow, she wants to take as few light trains as possible. What is the expected minimum number of light trains she has to take to get to work if she can use the (malfunctioning) teleportation system at most once?
输入格式
The input consists of:
- One line with integers ( ), the number of planets in the galaxy, light trains and wormholes. Planet is Charlie's home planet Gallifrey, and planet is Sontar, where Charlie works.
- One line containing distinct integers, the planets whose train stations each have a wormhole (in addition to the light trains).
- lines, each containing two integers and ( and ), describing a light train between the planets and . It is guaranteed that all light trains are pairwise disjoint.
It is guaranteed that it is possible to travel from any planet to any other planet of the galaxy using only light trains.
输出格式
Output a single reduced fraction, the expected minimum number of light trains Charlie has to take to get to work if she can use the (malfunctioning) teleportation system at most once.
Output the fraction as "", where is the numerator and is the denominator.
5 5 3
2 3 4
1 2
1 3
2 4
3 4
4 5
5/2
5 6 3
2 3 4
1 2
1 3
2 4
3 4
4 5
1 4
2/1