CF1172C1.Nauuo and Pictures (easy version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The only difference between easy and hard versions is constraints.
Nauuo is a girl who loves random picture websites.
One day she made a random picture website by herself which includes n pictures.
When Nauuo visits the website, she sees exactly one picture. The website does not display each picture with equal probability. The i -th picture has a non-negative weight wi , and the probability of the i -th picture being displayed is ∑j=1nwjwi . That is to say, the probability of a picture to be displayed is proportional to its weight.
However, Nauuo discovered that some pictures she does not like were displayed too often.
To solve this problem, she came up with a great idea: when she saw a picture she likes, she would add 1 to its weight; otherwise, she would subtract 1 from its weight.
Nauuo will visit the website m times. She wants to know the expected weight of each picture after all the m visits modulo 998244353 . Can you help her?
The expected weight of the i -th picture can be denoted by piqi where gcd(pi,qi)=1 , you need to print an integer ri satisfying 0≤ri<998244353 and ri⋅pi≡qi(mod998244353) . It can be proved that such ri exists and is unique.
输入格式
The first line contains two integers n and m ( 1≤n≤50 , 1≤m≤50 ) — the number of pictures and the number of visits to the website.
The second line contains n integers a1,a2,…,an ( ai is either 0 or 1 ) — if ai=0 , Nauuo does not like the i -th picture; otherwise Nauuo likes the i -th picture. It is guaranteed that there is at least one picture which Nauuo likes.
The third line contains n integers w1,w2,…,wn ( 1≤wi≤50 ) — the initial weights of the pictures.
输出格式
The output contains n integers r1,r2,…,rn — the expected weights modulo 998244353 .
输入输出样例
输入#1
2 1 0 1 2 1
输出#1
332748119 332748119
输入#2
1 2 1 1
输出#2
3
输入#3
3 3 0 1 1 4 3 5
输出#3
160955686 185138929 974061117
说明/提示
In the first example, if the only visit shows the first picture with a probability of 32 , the final weights are (1,1) ; if the only visit shows the second picture with a probability of 31 , the final weights are (2,2) .
So, both expected weights are 32⋅1+31⋅2=34 .
Because 332748119⋅3≡4(mod998244353) , you need to print 332748119 instead of 34 or 1.3333333333 .
In the second example, there is only one picture which Nauuo likes, so every time Nauuo visits the website, w1 will be increased by 1 .
So, the expected weight is 1+2=3 .
Nauuo is very naughty so she didn't give you any hint of the third example.