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 | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
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).