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

Takeover Wars

Takeover Wars

You are studying a takeover war between two large corporations, Takeover Incorporated and Buyout Limited. Each of these corporations controls a number of subsidiaries. The aim in this war is simply to drive the competition out of the market. There are \textbf{N} subsidiaries of Takeover Incorporated and \textbf{M} subsidiaries of Buyout Limited, and you know the market value of each subsidiary. Each company can designate one of its subsidiaries to perform a takeover. The takeover can either be friendly or hostile. A friendly takeover means a subsidiary of a corporation merges with a different subsidiary of the same corporation. The market value of the merged subsidiary is the sum of the market values of the constituent subsidiaries. There is no constraint on the relative sizes of the subsidiaries participating in a friendly takeover. A hostile takeover means a subsidiary \textbf{A} of a corporation attempts to take over a subsidiary \textbf{B} of the other corporation. For this to succeed, the market value of \textbf{A} has to be greater than the market value of \textbf{B}. After this move, \textbf{B} disappears from the market. The market value of \textbf{A} does not change (the gain of incorporating \textbf{B}’s assets is offset by the monetary cost of the takeover). For simplicity we assume that no sequence of moves leads to two subsidiaries of different corporations having the same market value. The companies take turns making moves in this takeover war, with Takeover Incorporated going first. A company will do nothing on its turn only if it cannot make a takeover. A company loses the takeover war if all its subsidiaries are taken over. Your aim is to learn which company can guarantee a victory from this war. In the first case of the sample data, Takeover Incorporated can simply take over one of the companies of Buyout Limited in its first move with the \textbf{7}-value subsidiary. Then it will lose one of its small (\textbf{1}-value) subsidiaries to a hostile takeover, and then it will take over the second subsidiary of Buyout Limited. In the second case, Takeover has to make a friendly takeover in its first move. Buyout Limited will join its two subsidiaries into a single company with market value \textbf{10}. Takeover will have to make a friendly takeover again (as again it will not have a large enough subsidiary to take over Buyout’s giant). Now Takeover will have two subsidiaries, valued either \textbf{9} and \textbf{3} or \textbf{6} and \textbf{6}. In either case, Buyout takes over one of these subsidiaries, Takeover has to pass, and Buyout takes over the other one. \InputFile Each test case is described by three lines of input. The first line contains two numbers \textbf{1} ≤ \textbf{N} ≤ \textbf{10^5} and \textbf{1} ≤ \textbf{M} ≤ \textbf{10^5} denoting respectively the number of subsidiaries of Takeover Incorporated and Buyout Limited. The next line lists the \textbf{N} sizes \textbf{a_i} of the subsidiaries of Takeover Incorporated (\textbf{1} ≤ \textbf{a_i} ≤ \textbf{10^12}), and the third line lists the \textbf{M} sizes \textbf{b_j} of the subsidiaries of Buyout Limited (\textbf{1} ≤ \textbf{b_j} ≤ \textbf{10^12}). \OutputFile For each test case, display the case number and either the phrase \textbf{Takeover Incorporated} or the phrase \textbf{Buyout Limited} depending on who wins the takeover war if both corporations act optimally.
Лимит времени 3 секунды
Лимит использования памяти 256 MiB
Входные данные #1
3 2
7 1 1
5 5
4 2
3 3 3 3
5 5
Выходные данные #1
Case 1: Takeover Incorporated
Case 2: Buyout Limited
Источник ACM-ICPC World Finals 2012