A1413.[COCI-2010_2011-contest2]#2 IGRA

普及/提高-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Having solved the tedious assignment, Mirko decided to play a game with his good friend Slavko.
They have written a sequence of N letters on a piece of paper. Each one of them is trying to put together a word using letters from the sequence. They alternate taking turns consisting of removing a single letter from the sequence and appending it to the end of their word. Mirko has the first turn. The game ends when no letters are remaining in the sequence.
We define a word to be more beautiful than another word if it comes first alphabetically. The player who has the more beautiful word at the end of the game wins. If both players have equal words, they both lose.
Mirko is a much better player than Slavko, so he has decided to make it easier for Slavko by always selecting the rightmost remaining letter in the sequence. Knowing this, Slavko wants to find out if it is possible for him to win and which is the most beautiful word he can end the game with.

输入格式

The first line of input contains an even positive integer N (2 ≤ N ≤ 100 000).
The second line of input contains N characters, the starting letter sequence. All characters are lower case letters from the English alphabet.

输出格式

The first line of output must contain “DA” if it is possible for Slavko to win, and “NE” otherwise.
The second line of output must contain the most beautiful word that Slavko can have at the end of the game.

输入输出样例

  • 输入#1

    2 
    ne 

    输出#1

    NE 
    n 
  • 输入#2

    4 
    kava

    输出#2

    DA 
    ak
  • 输入#3

    8 
    cokolada

    输出#3

    DA 
    acko 

说明/提示

In test cases worth 50% of total points the number N will not exceed 1000.

首页