i am getting WA in test 3, probably missing some case that i did not include in my code, but i am unable to find what case i am missing (i am missing brain ofc but what else).
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
i am getting WA in test 3, probably missing some case that i did not include in my code, but i am unable to find what case i am missing (i am missing brain ofc but what else).
Name |
---|
I think you misunderstood the statement, you don't need the number of ways to make $$$c \equiv k \mod 998244353$$$, you need the number of ways to maximize $$$c$$$. Since the number of ways is big (not the maximum value of $$$c$$$), you want that number $$$\mod 998244353$$$.
yeah but like even if i do only (number of way to maximize c) % MOD
like here:
the number of ways to maximize c depends on count1 and count2, so i am doing % MOD to them only. and isn't, the number of ways to make c=k is equal to the number of ways to maximize c? like k is the maximum value right?
Ok, I found a failing testcase:
$$$n = 2$$$
$$$arr_0 = -1, arr_1 = 0$$$
Your code outputs $$$3$$$, but the answer is $$$2$$$.
how is it 2,
like here k is 1;
and we have 3 ways;
1st : c = c+arr0 = -1 , c = |c+arr1| = 1
2nd : c = |c+arr0| = 1 , c = c+arr1 = 1
3rd : c = |c+arr0| = 1 , c = |c+arr1| = 1;
there are 3 unique ways to maximize c
My bad
Auto comment: topic has been updated by butterpaneer (previous revision, new revision, compare).