CF1864E.Guess Game
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Carol has a sequence s of n non-negative integers. She wants to play the "Guess Game" with Alice and Bob.
To play the game, Carol will randomly select two integer indices ia and ib within the range [1,n] , and set a=sia , b=sib . Please note that ia and ib may coincide.
Carol will tell:
- the value of a to Alice;
- the value of b to Bob;
- the value of a∣b to both Alice and Bob, where ∣ denotes the bitwise OR operation.
Please note that Carol will not tell any information about s to either Alice or Bob.
Then the guessing starts. The two players take turns making guesses, with Alice starting first. The goal of both players is to establish which of the following is true: a<b , a>b , or a=b .
In their turn, a player can do one of the following two things:
- say "I don't know", and pass the turn to the other player;
- say "I know", followed by the answer " a<b ", " a>b ", or " a=b "; then the game ends.
Alice and Bob hear what each other says, and can use this information to deduce the answer. Both Alice and Bob are smart enough and only say "I know" when they are completely sure.
You need to calculate the expected value of the number of turns taken by players in the game. Output the answer modulo 998244353 .
Formally, let M=998244353 . It can be shown that the answer can be expressed as an irreducible fraction qp , where p and q are integers and q≡0(modM) . Output the integer equal to p⋅q−1modM . In other words, output such an integer x that 0≤x<M and x⋅q≡p(modM) .
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤105 ). The description of the test cases follows.
The first line of each testcase contains a single integer n ( 1≤n≤2⋅105 ).
The second line of each testcase contains n integers s1,s2,…,sn ( 0≤si<230 ).
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
输出格式
For each test case, print a single integer — the answer to the problem modulo 998244353 .
输入输出样例
输入#1
4 2 2 3 3 0 0 0 3 9 9 6 8 34124838 0 113193378 8 321939321 113193378 9463828 99
输出#1
499122179 1 332748120 77987843
说明/提示
In the first test case, there are only 4 possible situations:
- ia=1 , ib=1 , a=2 , b=2 , the number of turns is 2 ;
- ia=1 , ib=2 , a=2 , b=3 , the number of turns is 3 ;
- ia=2 , ib=1 , a=3 , b=2 , the number of turns is 2 ;
- ia=2 , ib=2 , a=3 , b=3 , the number of turns is 3 .
The expected number of turns is 42+3+2+3=25=499122179(mod998244353) .
Consider the first case, when a=2 , b=2 . The guessing process is as follows.
In the first turn, Alice thinks, "I know that a=2,a∣b=2 . I can infer that b=0 or b=2 , but I am not sure which one". Thus, she says, "I don't know".
In the second turn, Bob thinks, "I know that b=2,a∣b=2 . I can infer that a=0 or a=2 . But if a=0 , then Alice would have already said that a<b in the first turn, but she hasn't. So a=2 ". Thus, he says, "I know, a=b ". The game ends.
In the second test case, for a=0 , b=0 , Alice knows that a=b immediately. The expected number of turns equals 1 .