Cezar

 1 Sec 65535 KB |  显示标签
62115
通过提交

题目描述

Little Caesar likes card games. Everytime he comes to Zagreb, he plays blackjack, the
famous card game, with his friends.
In this game, the player draws cards while the sum of the cards in his hand is less than or
equal to 21 or until he says “DOSTA” (Croatian for “STOP”).
At the beginning of the game, there are 52 cards in the deck, thirteen ranks of each of the
four suits. The card ranks are two, three, …, ten, Jack, Queen, King and Ace. The card
values are the following: the cards with numbers on them are worth that number (e.g., “nine”
is 9), the cards with pictures (Jack, Queen, and King) are worth 10, whereas the Ace is worth
11.
Caesar has found himself in an interesting situation. During the game, he already drew N
cards whose sum is less than or equal to 21 and is now having second thoughts about
drawing one more card or not. Let’s assume X is the difference from the sum of the cards so
far to 21. Everybody knows that you don’t draw a card if the number of the remaining cards
in the deck whose value is greater than X is greater than or equal to the number of the
remaining cards in the deck whose value is less than or equal to X .
Since Caesar is having a difficult time calculating whether he needs to draw another card or
not, he’s asking you to do it for him.

输入格式

The first line of input contains the positive integer N (1 ≤ N ≤ 52), the number of cards
Caesar has drawn so far.
Each of the following N lines contains a single positive integer, the value of the i th card
Caesar drew.

输出格式

If Caesar should draw another card, output “VUCI” (Croatian for “DRAW”), otherwise output
“DOSTA” (Croatian for “STOP”).

样例输入 #1

6
2
3
2
3
2
3
1
10
2
5
6

样例输出 #1

DOSTA
VUCI
VUCI

提示

Clarification of the first test case:
The sum of the already drawn cards is 15, and the difference X to 21 is 6. The number of cards in the
deck with a value greater than 6 is 32 (4 Aces, 4 Kings, 4 Queens, 4 Jacks, 4 tens, 4 nines, 4 eights,
and 4 sevens), whereas the number of cards in the deck with a value less than or equal to 6 is 14
(one two, one three, 4 fours, 4 fives, and 4 sixes).

来源

COCI 2017-2018 CONTEST #1
 上传者
coach
 创建时间
2018-03-10 21:37
 修改时间
2022-06-28 18:37