eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач
Задачи

Sightseeing

Sightseeing

Лимит времени 1 секунда
Лимит использования памяти 64 MiB

As a computer science student you are of course very outdoorsie, so you decided to go hiking. For your vacation this year, you located an island full of nice places to visit. You already identified a number of very promising tracks, but are still left with some problems. The number of choices is so overwhelming, that you had to select only a "small" subset of at most 10^5 sights.

And if that is not enough, you are very picky about the order in which you want to visit the sights. So you have already decided on an order in which you want to visit the preselected tracks. The problem you are left with is to decide in which direction to travel along each single track, and whether you may have to reduce your choice of tracks even further. After identifying the travel time between the endpoints of different tracks, you decide to write a program to figure out if you can make all your trips within the time you have planned for your vacation. Since you also do not want to waste any precious time, you only care about an optimal solution to your problem. Furthermore, the tracks can get pretty challenging. Thats why you do not want to hike along a track more than once.

Входные данные

The first line of the input gives the number of test cases C (0 < C100). The first line of each such test case holds two integers N, T the number of tracks of the current hiker (1N10^5) and the maximal time spent hiking throughout the vacation (0T10^6). Each of the following N lines holds five integers c_p, c_bb, c_be, c_eb and c_ee that describe a track (in order of importance). cp gives the length of the track in minutes. c_xy gives the travel time of the official begin or end of a track to the beginning or end of the next most important track, where x and y are either b or e. All values given are non-negative integers not greater than 10^6. Since you have to get back to your car, the list is circular. Furthermore, we will ignore the time it takes you to get to the start of your trip with your car.

Выходные данные

For each test case print one line. The output should contain a list of either F or B for every track (in order) indicating whether you have to hike the track in forward direction or backward direction. If you cannot make the full trip within the planned time T, you should print IMPOSSIBLE to indicate that these trips are just too much hiking. You can assume that the optimal solution is always unique.

Пример

Входные данные #1
3
2 100
4 7 8 2 3
1 4 6 1 2
2 20
4 2 3 7 8
1 1 2 4 6
3 5
1 2 2 2 1
1 1 2 2 2
1 2 2 1 2
Выходные данные #1
FF
BB
IMPOSSIBLE
Источник ACM ICPC German Collegiate Programming Contest 2011