CF1739C.Card Game

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Consider a game with nn cards ( nn is even). Each card has a number written on it, between 11 and nn . All numbers on the cards are different. We say that a card with number xx is stronger than a card with number yy if x>yx > y .

Two players, Alex and Boris, play this game. In the beginning, each of them receives exactly n2\frac{n}{2} cards, so each card belongs to exactly one player. Then, they take turns. Alex goes first, then Boris, then Alex again, and so on.

On a player's turn, he must play exactly one of his cards. Then, if the opponent doesn't have any cards stronger than the card played, the opponent loses, and the game ends. Otherwise, the opponent has to play a stronger card (exactly one card as well). These two cards are removed from the game, and the turn ends. If there are no cards left, the game ends in a draw; otherwise it's the opponent's turn.

Consider all possible ways to distribute the cards between two players, so that each of them receives exactly half of the cards. You have to calculate three numbers:

  • the number of ways to distribute the cards so that Alex wins;
  • the number of ways to distribute the cards so that Boris wins;
  • the number of ways to distribute the cards so that the game ends in a draw.

You may assume that both players play optimally (i. e. if a player can win no matter how his opponent plays, he wins). Two ways to distribute the cards are different if there is at least one card such that, in one of these ways, it is given to Alex, and in the other way, it is given to Boris.

For example, suppose n=4n = 4 , Alex receives the cards [2,3][2, 3] , and Boris receives the cards [1,4][1, 4] . Then the game may go as follows:

  • if Alex plays the card 22 , then Boris has to respond with the card 44 . Then, Alex's turn ends, and Boris' turn starts. Boris has only one card left, which is 11 ; he plays it, and Alex responds with the card 33 . So, the game ends in a draw;
  • if Alex plays the card 33 , then Boris has to respond with the card 44 . Then, Alex's turn ends, and Boris' turn starts. Boris has only one card left, which is 11 ; he plays it, and Alex responds with the card 22 . So, the game ends in a draw.

So, in this case, the game ends in a draw.

输入格式

The first line contains one integer tt ( 1t301 \le t \le 30 ) — the number of test cases.

Then, tt lines follow. The ii -th line contains one even integer nn ( 2n602 \le n \le 60 ).

输出格式

For each test case, print three integers:

  • the number of ways to distribute the cards so that Alex wins;
  • the number of ways to distribute the cards so that Boris wins;
  • the number of ways to distribute the cards so that the game ends in a draw.

Since the answers can be large, print them modulo 998244353998244353 .

输入输出样例

  • 输入#1

    5
    2
    4
    6
    8
    60

    输出#1

    1 0 1
    3 2 1
    12 7 1
    42 27 1
    341102826 248150916 1

说明/提示

In the first test case, Alex wins if he receives the card 22 (he plays it, and Boris cannot respond). If Alex receives the card 11 , the game ends in a draw.

In the second test case:

  • Alex wins if he receives the cards [3,4][3, 4] , [2,4][2, 4] or [1,4][1, 4] ;
  • Boris wins if Alex receives the cards [1,2][1, 2] or [1,3][1, 3] ;
  • the game ends in a draw if Alex receives the cards [2,3][2, 3] .
首页