2395. On-Line Banking

单点时限: 2.0 sec

内存限制: 256 MB

For each scenario, print one integer number: the maximal number of points that may be scored in a game determined by the given generator. TA central bank is an institution that is responsible for the monetary policy of a country. Beside others, it monitors and supervises other banks. Your task is to write a computer program that will serve as a simple supervision instrument for monitoring bank accounts.he score is calculated after 11 rounds as the sum of scores in all combinations.

输入格式

The input contains several scenarios. Each scenario begins with a line containing a single positive integer A, the number of bank accounts at the beginning of the supervision, 0 < A ≤ 100. Then there are A lines each describing one account. Such a line contains the account number, one space, and a non-negative decimal number specifying the account balance. Each of the following lines specifies a request for one bank operation. The line begins with a command and then, separated by a space, there are optional parameters. The list of commands follows, the third column in the table shows the number of parameters.

The number of requests in every scenario will always be between 0 and 1000 (inclusive). The last request of a scenario is followed by the word “end” and one empty line. Then the next scenario begins. The last scenario is followed by a line containing zero in place of A.

All account numbers consist of exactly four decimal digits followed by a slash character (“/”) and one digit specifying a code of the bank that operates the account. Each bank has its own unique code.

Amounts are always given as non-negative decimal numbers with exactly two digits after the decimal point. No amount in the input will be higher than 10 000. No unnecessary leading zeros are permitted, i.e., only amounts strictly less than 1.00 may start with a zero.

输出格式

For each request, output exactly one line. The line must begin with the command followed by the amount parameter (if present) separated from the command by a space. Then there is a colon (“:”), one space and the result of the operation.

create: If there is already an account with the same number in the same bank, the result will be “already exists”. Otherwise, create the account (with the initial balance of zero) and output “ok”.

For all commands other than create, if there is no account with the number specified as a parameter, the result will always be “no such account”. If the account exists (or both accounts do), the following rules apply.

deposit: The result is always “ok” for existing accounts. Simply add the amount to the account balance.

withdraw: If the balance of the specified account is strictly lower than the requested amount, the result will be “insufficient funds”. Otherwise, subtract the amount and output “ok”.

transfer: First, if both account numbers are equal (including the bank code), the result should be “same account”. Similar to the previous case, if the balance of the source account is lower than the amount to be transferred, the result will be “insufficient funds”. Otherwise, transfer the money from the source account to the target one and output either “ok” if the transfer happens inside one bank or “interbank” if the money have to be transferred from one bank to another.

After each scenario, output the word “end” and one empty line. After the “end” of the last scenario, output one additional line containing the word “goodbye”.

样例

Input
3
1234/5 100.00
4321/6 150.20
5432/5 1600.00
withdraw 1234/5 20.00
deposit 1234/5 35.00
withdraw 1234/5 200.00
transfer 5432/5 1234/5 100.50
transfer 5432/5 4321/6 50.00
create 1234/5
create 1236/5
transfer 1236/5 1236/5 100.00
transfer 1236/5 1234/5 100.00
withdraw 0000/0 100.00
deposit 0000/0 0.11
transfer 1234/5 0000/0 10000.00
end
1
9999/9 9.40
deposit 9999/9 6.92
withdraw 9999/9 9.68
withdraw 9999/9 6.64
end
0
Output
withdraw 20.00: ok
deposit 35.00: ok
withdraw 200.00: insufficient funds
transfer 100.50: ok
transfer 50.00: interbank
create: already exists
create: ok
transfer 100.00: same account
transfer 100.00: insufficient funds
withdraw 100.00: no such account
deposit 0.11: no such account
transfer 10000.00: no such account
end
deposit 6.92: ok
withdraw 9.68: ok
withdraw 6.64: ok
end
goodbye

7 人解决,8 人已尝试。

9 份提交通过,共有 24 份提交。

6.1 EMB 奖励。

创建: 15 年,5 月前.

修改: 6 年,7 月前.

最后提交: 5 年,10 月前.

来源: CTU Open 2008

题目标签