We will hold AtCoder Beginner Contest 162.
In this contest, available languages are different from usual. Please see the bottom of this contest page for details. (Only Japanese)
https://atcoder.jp/contests/language-test-202001
- Contest URL: https://atcoder.jp/contests/abc162
- Start Time: http://www.timeanddate.com/worldclock/fixedtime.html?iso=20200412T2100&p1=248
- Duration: 100 minutes
- Number of Tasks: 6
- Writer: kyopro_friends, gazelle, camypaper, tempura0224, ynymxiaolongbao
- Rated range: ~ 1999
The point values will be 100-200-300-400-500-600.
We are looking forward to your participation!
UPD: I apologize for the slow grading. The problem has been fixed during the contest. You'll be comfortable at the next contest.
Had been waiting for this for so long.
I recommend that you check whether your code and library work well before the contest. New languages and a new judge server were already tested in Japanese contests (https://atcoder.jp/contests/language-test-202001, https://atcoder.jp/contests/judge-update-202004 ), but some bugs may still exist.
Why only Japanese language?
The page detailing the updated languages are Japanese. The actual contest isn't (I hope)
How to solve D ?
Separate all indexes of R,G,B in 3 separate arrays.From all possibles triples of R,G,B subtract those in which middle index is equidistant from other two. To calculate. Iterate over any two array and find the third no. (that may to the left, mid and right of this pair) which makes these three in AP. Check if the third no. is present in third array. If yes subtract 1 from all triples.
provide the link of your solution.
https://atcoder.jp/contests/abc162/submissions/11845201
You code starting with the following quote is quite ironical: ~~~~~ Code is like humor. When you have to explain it, it’s bad. ~~~~~
What are the real names of the problem setters??
chokudai is there any Editorial of atcoder's contest available written in English?
They usually add English Editorial along with the Japanese Editorial 4-5 days after the contest.
Thank You, I actually didn't know it.I opened account in atcoder few weeks ago and did an ABC but after one day when i tried to upsolve found no editorial in English.
Same here. I started with ABC 161.
just copy the text written in Japanese to google translate. if u cannot wait : )
Can't copy Japanese text
editorial in english is available some days after the contest
Good luck to everyone O^O
That's really great, that structural binding finally compiles on Atcoder.
When will the solutions/code for the problems be discussed or shared? I am new to Code Forces. I really need those to improve. Thanks.
a few minutes later
Auto comment: topic has been updated by chokudai (previous revision, new revision, compare).
How to solve E ?
Think in reverse. Try to answer question to how many sequences we will get if have gcd each from 1 to k.
So, for:
gcd = 1. -> We have N places to fill and we can use any number from 1 to k at all places(N places to fill). Number of ways = k^N.
gcd = 2 -> we will have k/2 numbers as multiples of 2. so we have k/2 options at each place. Number of ways = (k/2)^N.
And, similiarly for all gcd till k.
But wait there is overcounting happening here. Consider while calculating gcd = 2, on choosing randomly we can even get gcd = 4, 6, 8 and so on.
So what we can do is something like this, for removing overcounting,
So we can just iterate from backwards to make our counting easier. My submission
I hope the explanation helped you. Ignore my english.
Nicely explained buddy.
I understood the solution till choosing the arrays on the basis of multiples of numbers from 1 to k, and removing the overcounting by subtracting the extra arrays counted for a particular number whose multiples are greater than the number itself but less than or equal to k which are are overcounted.
But on finding the final answer why did you multiply the count of arrays for each GCD from 1 to k with the number itself?
where
Total Number of arrays with gcd = k be dp[k]. So it's contribution to answer will dp[k] * k(which is what we are asked to calculate in question)
We had to find the total sum, that's why multiplied the count of array with its GCD to get its contribution. Missed the sum part, that's why asked such a question, my bad. By the way the above explanation of the solution to the problem is great. Did you solve the F problem?
Yeah glad it helped you to understand. No, I wasn't able to solve F.
thanks for your explanation ritik_patel05
Nice explanation, thanks! Why do we go backwards with the calculation?
Because smaller numbers need to minus larger numbers, so we must first ensure the correctness of larger numbers.
Nice explanation!
can you please explain how the gcd=2 terms will be k/2
For each $$$i$$$ there are $$$\left\lfloor\frac{k}{i}\right\rfloor^n$$$ sequences with all elements divisible by $$$i$$$. Now for any function $$$f$$$: $$$\sum\limits_{i=1}^k \left\lfloor\frac{k}{i}\right\rfloor^n f(i)$$$ is equal to sum over all arrays of $$$\sum\limits_{i | \gcd(A_1, A_2, \ldots A_N)} f(i)$$$. Now we just need to pick $$$f$$$ such that $$$\sum\limits_{i | k} f(i) = k$$$. We might know, that Euler totient function has such property, or we can fill array $$$f$$$ with intended value of this sum (in this case $$$f(i) = i$$$) and run the following code:
Isn't $$$O(N^2)$$$ too slow? Do you want to increase $$$j$$$ by $$$i$$$ each time?
Ooooops. It should iterate over all multiples of $$$i$$$ and take $$$O(n \log n)$$$ time
I understood what you meant, just making it clear for readers. Best of luck for div1 round!
can we solve E like this.
for each i we want to find how many subsequences have gcd exactly i. So every value will be multiple of i (1*i,2*i,3*i..etc)
let x=k/i
for any such subsequence there should atleast one value which is equal to i otherwise if everyvalue is >=2*i then gcd will be >i.
so count of such subsequences = total — none of those values is equal to i
so count=x**n-(x-1)**n
will this work i'm getting wrong answer for sample testcases , am i overcounting something?
upd: Found my mistake
what was the mistake?
Thank you, sir. Now I got it
Can you please explain your solution through Euler totient function a little more I didn't understand it.
I was trying bruteforce of F in O(N*N). But it gave me the wrong answer.
Can anyone tell why this solution is giving wrong answer. Link
Wont N^2 give TL?
I use dp to solve F
we can maintain dp[i][j], j = {0,1}
Initially dp[2][1] = arr[2] and dp[2][0] = arr[1] (Base Case)
1. dp[i][1] denotes maximum sum when we are at i and we are picking ith element and floor(i / 2) elements(subset of 1...i such that adjacent element are not picked).
2. dp[i][0] denotes maximum sum when we are at i and we are NOT picking ith element and floor(i / 2) elements (subset of 1...(i — 1) such that adjacent element are not picked)
With some work we can fill dp upto n.
Our final answer will be max(dp[n][1],dp[n][0]) My Submission
for odd i
dp[i][0] may be just dp[i-1][1]
may be!!!! designing transition can be different
I mean for this dp[i][0] = max({arr[i — 1] + dp[i — 2][0], arr[i — 1] + dp[i — 3][1], arr[i — 1] + dp[i — 3][0], arr[i — 2] + dp[i — 3][0]});
you can just write dp[i][0]=dp[i-1][1]
what about if we can get max answer with arr[i — 1]
too short to understand,can you give some explanation? :D
since we know already how many elements we have to take i.e N/2 so instead of using N^2 dynamic programming solution we can do it in O(N) by maintaining at each i that we have taken i/2 elements upto now and have maximum possible sum till now, since at each i we have two possiblity either pick that element or don't pick it.
We have two cases to handle when i is odd and i is even
And if we don't pick ith element we have to construct answer so that total element chosen is i/2 and sum is maximum we can construct answer by taking arr[i — 1] and help from states (i — 1),(i — 2),(i — 3) (for arr[i — 1] only these are possibility can you see why???) and also by using arr[i — 2] and help from state (i — 3) (for arr[i — 2] only this is possible). You don't have to consider other elements and states because you cannot build current state having i/2 elements.
thanks a lot!
Your solution might underflow, check the testcase where every value is negative.
Video tutorials for this contest
Also, F is this JOI task, which helped me a lot to win the contest
Thanks a lot for your regular videos, just one feedback that audio quality is can improve, but still very helpful!
Yeah, I didn't expect to record now, so my audio quality wasn't the best due to circumstances not under my control.
But I'll take that in account from now on.
Can you share your solution idea to the JOI problem you mentioned(Candies) ?
how to E ?
I used Mobius Inversion, don't know if there was an easier solution using symmetry.
wdym by modbius can your share your AC code?
[user:The _Dark_Knight_Rises] Can you please share your idea?
I solved problem D in last 2 minutes. Spent almost 1 hour debugging it and found there was an overflow error in my $$$nC2$$$ and $$$nC3$$$ functions. I got huge rush when I saw AC on it!! Wonderful questions!!
https://atcoder.jp/contests/abc162/submissions/11854513
Did you really need combinatorics for D? I would say, there was easy and simpler solution. Iterate over $$$i$$$ and $$$k$$$ ( such that $$$s[i] != s[k]$$$ ) and find number of $$$j$$$ between them such that ( $$$s[j] = \{'R','G','B'\} \setminus \{s[i],s[k]\}$$$ ).
Link — My solution.
Agreed, no combinatorics needed. Just needed to precompute prefixes to answer the "number of j between them" queries.
How to solve E and F? In E I had an idea to check all possible gcds and find answer, in F I have a dp approach but it works in O(n^2).
Read these:
gupta_samarth I just went through your solution for E, phi[i] gives the count of numbers from 1 to i which are coprime with i. now = expo( k/g, n ) means inserting all the multiples of g in the array of size n . What I don't understand is that why did you do phi[g]*now ?
Read the blogs ( the mobius inversion one, the other is pre requisite ), they explain the problem for $$$2$$$ numbers taking values upto $$$n$$$.
for each possible gcd try to maintain the number of possible arrays , dp[k+1] such that dp[i] means number of arrays which produce gcd=i, now if you try to find dp[i] means each number must be divisible by i(as this should be the gcd), so each number can be [i*1, i*2,i*3.....i*(k/i)] number of possibilities are k/i but these possibilities may also produce GCDs which are multiple of i (for eg if you took each element as i*2) so to get the exact number of sequences which produce 'i' as gcd you mustremove the count of sequences which exactly produce i*2, i*3 and so on. you can do this using dp just iterate the dp backwards
you can optimize O(N^2) solution to O(N*sqrt(N))....
A problem similiar to E. The only difference is we have one array here and not $$$k$$$$$$n$$$.
Solutions : D : Iterate on the L,R boundaries of the sequence, maintaining the count of each character in the boundary and if s[L] != s[R], add number of indices that have characters different from both of them to the answer and subtract 1 from it if(L == R(mod 2) and s[(L+R)]/2 == required character ). Time Complexity : (N^2)
E : Simple implementation of sieve. For each i, say number of sequences of length n is f(i) that has gcd = i, then f(i) = (floor(k/i))^n — (f(2*i) + f(3*i) + f(4*i) .... f(i*(floor(k/i))), calculate it from backwards.Time Complexity : O(KlogK)
F : It is easy to observe that gap between consecutive elements cannot exceed 2 or 3, but to be on safe side, lets make it 10. So we can make a dp[i][j] denoting the maximum answer if the sequence ends at index i(taking it) and (ceil(i+1)/2 — j) is the length of the sequence for this answer.It is easy to calculate it via contribution technique.Say before i we take j (j>i-11), and at j we take state k, then a possible transition is dp[i][ceil(i/2) — (ceil(j/2) -k)+(i-j-1)] = max(dp[i][ceil(i/2) — (ceil(j/2) -k)+(i-j-1)] ,dp[j][k] + arr[i]).Don't forget to initialize a possible starting state for each i, ie, dp[i][i] = arr[i] for all possible i. Time Complexity : (n*fac*fac), where fac is around 3-4 for optimized solutions.
In problem E, does it make a difference if we calculate it from backwards? I was not able to get the right answer by summing from 1 to k.
Yes because for f(i) we already need to know f(2*i) and so on already.If you get confused at any time about iteration, just do memoization dp.
my solution for F, don't know what is wrong , for me this should work, could anyone help me in figuring out where i am wrong https://atcoder.jp/contests/abc162/submissions/11855696
Instant editorial:
A: Just implement. I scanned in as a string to make it easier B: Implement . Use the modulo operator to check for divisibility, a % b == 0 if a is divisible by b C: Implement, just brute force using a triple nested for loop, using Euclid's algorithm to find gcd(i,gcd(j,k)) in O(n^3 logn) time D: Keep a prefix sum of the number of appearances of 'R' in subarray [1,i] for all 1<=i<=n. Do the same for 'G' and 'B'. Now brute force over all (j,k), and one can easily calculate all triples.
E: Let a[i] be the number of tuples with gcd i. Observe that if a tuple has gcd a multiple of i, then all elements of the tuple must also be multiples of i. Let p(i) = number of multiples of i that are <= k. The number of tuples with gcd i can be simply calculated by p(i)^n — a[i*2] — a[i*3]...
We can calculate each a[i] from i = k to 1 in that order.
Calculating each a[i] takes O(k/i) time. Via the harmonic series upper bound, this means that across all i from 1 to k, this method will take O(klogk) time.
F: This is some nasty case bash. First we should calculate a prefix sum for all odd indexed numbers and even indexed numbers.
If n is a even: then either you take all odd indexed numbers, even indexed numbers, or there is a single gap of two. It is enough to consider these cases and to brute force all possible gaps.
If n is odd, then you either don't take either endpoint, you take both endpoints, or you take one of them.
If you don't take either endpoint then there is only one choice: all the "middle" elements.
If you take exactly one of the endpoints, there will be one gap of two or three. Brute force over all the O(n) possible gaps
If you take both endpoints, then you may have two gaps of two or one gap of three. Brute forcing over the O(n) possible gaps of 3 is fine, but there are O(n^2) possible configurations of two gaps of two. However, suppose our gaps are at location i and j, writing down the expression for the resulting sum f(i,j) will look something like f(i,j) = g(i) + h(j) + c for some constant c, and some functions g and h. The exact details depend on implementation details I won't bore you with. By looping over it in a specific way, you can keep a running max of f(i) for some prefix i as you iterate over j, keeping in mind whatever precise restrictions you have on i and j.
Thus, an O(n) algorithm is achieved.
More details upon request.
Problem in Q.D what is the problem with this code in QUESTION D ? I am getting WA in 2 test cases
Check out the code below and watch out for mathematical overflow.
I got it. Thanks
Problem E, can someone help me find the bug in my logic? for i : 1 -> k
i = 1,
number of array such that there is at least one 1. -> k^n — (k-1)^n for all such arrays, gcd will be 1.
Now our Integer set reduced to {2,3,4...k}
i = 2,
number of array such that there is at least one 2 out of our Integer set {2,3,4...k} -> T = (k-1)^n — (k-2)^n. for all such arrays, gcd can be either 1 or 2. Number of arrays such that gcd is 2 will be where all elements are power of 2, -> C2 = (k/i)^n-(k/i — 1)^n : Gcd contribution = 2 All the other arrays will have gcd 1 and number of such array is = T-C2.
Continue like this . .
i = k
in the last iteration our integer set will {k}. then number of arrays with this is 1 and gcd contribution is k.
Unable to find my mistake. :( Please help!!
I was thinking in a similar way but look
consider i=2 case according to your formula count of such subseq which give gcd=2 is (k-1)^n-(k-2)^n.
consider this subsequence {2,2,...,2,3} all 2's except the last one being 3 , this will be counted under (k-1)^n and this subseq won't be counted under (k-2)^n as it won't consider 2 as it's element now is the gcd of {2,2,...,2,3} equal to 2? no right it's 1 so you are counting some extra subseq whose gcd isn't i.
read my previous comment.
For i=2 case, the total number of arrays possible are T = (k-1)^n -(k-2)^n, out of which some arrays will have gcd 1 and some 2. Your example will be counted in case where gcd is 1 for i=2. Out of T arrays, gcd will be 2 if we have an array with multiples of 2. (2,2,...3) will fall in case where all are not multiple of 2 hence gcd 1.
Sorry I haven't fully read your comment. In your statement u have written that numbe r of subseq whose GCD is 2 is (k/i)^n -(k/i-1)^n its wrong I have done same mistake.think about it write a brute force code to check it and you will know the reason.
I have a solution for D using prefix array which may take less than O(n^2) time(I cannot figure out what exactly the time complexity is because I am a beginner now ..) If there is any problem, please let me know, thanks!! Your text to link here...
For problem F.....
Why is this solution wrong ? I considered that if the number of terms is even, answer is just sum of odd numbered terms or even numbered terms but if the number of terms is odd, we have to skip one extra element i.e. we need to skip two consecutive elements once. Here, dp[i][0] stores if we haven't performed a move where we have skipped two consecutive terms, dp[i][1] stores if we have performed a move where we have skipped two adjacent terms.
Please help gazelle camypaper tempura0224 chokudai
nvm found out my mistake, If you had same doubt. Take a look here
test cases for f were too weak
7 1 1 1 1 1 1 1 my program was giving output 4 instead of 3 and yet it got accepted
Yes,You are right.
5 3 0 0 0 2
My code give 3 output instead of 5 and accepted. My submission
Supplementary editorial and sample codes for last 4 problems. More notes "Number Theory for Programming" for problem 5, based on Nisiyama Suzune's blogs and with some extensions.
Can Anyone Explain Problem F? In Very Easy Explanation. Like How We Got To This Solution. What is the approach? It Would Be Really Appreciated IF You......
Please anyone can explain problem E solution through Euler totient function.