CF1279D.Santa's Bot

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Santa Claus has received letters from nn different kids throughout this year. Of course, each kid wants to get some presents from Santa: in particular, the ii -th kid asked Santa to give them one of kik_i different items as a present. Some items could have been asked by multiple kids.

Santa is really busy, so he wants the New Year Bot to choose the presents for all children. Unfortunately, the Bot's algorithm of choosing presents is bugged. To choose a present for some kid, the Bot does the following:

  • choose one kid xx equiprobably among all nn kids;
  • choose some item yy equiprobably among all kxk_x items kid xx wants;
  • choose a kid zz who will receive the present equipropably among all nn kids (this choice is independent of choosing xx and yy ); the resulting triple (x,y,z)(x, y, z) is called the decision of the Bot.

If kid zz listed item yy as an item they want to receive, then the decision valid. Otherwise, the Bot's choice is invalid.

Santa is aware of the bug, but he can't estimate if this bug is really severe. To do so, he wants to know the probability that one decision generated according to the aforementioned algorithm is valid. Can you help him?

输入格式

The first line contains one integer nn ( 1n1061 \le n \le 10^6 ) — the number of kids who wrote their letters to Santa.

Then nn lines follow, the ii -th of them contains a list of items wanted by the ii -th kid in the following format: kik_i ai,1a_{i, 1} ai,2a_{i, 2} ... ai,kia_{i, k_i} ( 1ki,ai,j1061 \le k_i, a_{i, j} \le 10^6 ), where kik_i is the number of items wanted by the ii -th kid, and ai,ja_{i, j} are the items themselves. No item is contained in the same list more than once.

It is guaranteed that i=1nki106\sum \limits_{i = 1}^{n} k_i \le 10^6 .

输出格式

Print the probatility that the Bot produces a valid decision as follows:

Let this probability be represented as an irreducible fraction xy\frac{x}{y} . You have to print xy1mod998244353x \cdot y^{-1} \mod 998244353 , where y1y^{-1} is the inverse element of yy modulo 998244353998244353 (such integer that yy1y \cdot y^{-1} has remainder 11 modulo 998244353998244353 ).

输入输出样例

  • 输入#1

    2
    2 2 1
    1 1
    

    输出#1

    124780545
    
  • 输入#2

    5
    2 1 2
    2 3 1
    3 2 4 3
    2 1 4
    3 4 3 2
    

    输出#2

    798595483
    
首页