CF1491I.Ruler Of The Zoo
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
After realizing that Zookeeper is just a duck, the animals have overthrown Zookeeper. They now have to decide a new ruler among themselves through a fighting tournament of the following format:
Initially, animal 0 is king, while everyone else queues up with animal 1 at the front of the queue and animal n−1 at the back. The animal at the front of the queue will challenge the king to a fight, and the animal with greater strength will win the fight. The winner will become king, while the loser joins the back of the queue.
An animal who wins 3 times consecutively will be crowned ruler for the whole zoo. The strength of each animal depends on how many consecutive fights he won. Animal i has strength Ai with 0 consecutive win, Bi with 1 consecutive win, and Ci with 2 consecutive wins. Initially, everyone has 0 consecutive win.
For all animals, Ai>Bi and Ci>Bi . Also, the values of Ai , Bi , Ci are distinct (all 3n values are pairwise different).
In other words, an animal who is not a king has strength Ai . A king usually has a strength of Bi or Ci . The exception is on the first turn, the first king (animal 0 ) has strength Ai .
Who is the new ruler, and after how many fights? Or will it end up that animals fight forever with no one ending up as ruler?
输入格式
The first line contains one integer n ( 4≤n≤6000 ) — number of the animals.
i -th of the next n lines contains 3 integers Ai , Bi and Ci ( 0≤Ai,Bi,Ci≤109 ).
It is guaranteed that Ai>Bi and Ci>Bi , and that all values of Ai , Bi and Ci are distinct.
输出格式
Output two integers in a single line. The first is the index of the animal that will become ruler, and the second is the number of fights passed until some animal becomes the ruler.
If the animals will fight for infinitely long, output -1 -1 instead.
输入输出样例
输入#1
4 5 1 2 10 8 11 9 0 3 7 4 6
输出#1
-1 -1
输入#2
5 11 7 12 8 6 14 2 1 10 13 0 9 5 3 4
输出#2
1 7
说明/提示
The following describes the sequence of events for the second sample. Note that in fight 1 , the king (animal 0 ) has strength A0 . The tournament ends at fight 7 as animal 1 wins fight 5 , 6 and 7 .