Блог пользователя vovuh

Автор vovuh, история, 7 лет назад, перевод, По-русски

1077A - Прыгающая лягушка

Разбор
Решение

1077B - Обеспокоенные жильцы

Разбор
Решение

1077C - Хороший массив

Разбор
Решение

1077D - Вырезание массива

Разбор
Решение

1077E - Тематические контесты

Разбор
Решение

1077F1 - Картинки с котиками (простая версия)

Разбор
Решение

1077F2 - Картинки с котиками (сложная версия)

Разбор
Решение
Разбор задач Codeforces Round 521 (Div. 3)
  • Проголосовать: нравится
  • +27
  • Проголосовать: не нравится

»
7 лет назад, скрыть # |
Rev. 2  
Проголосовать: нравится +64 Проголосовать: не нравится

In spite of being (of course) an overkill for problem F1 and F2, it's really interesting to point out that many problems of that kind are solvable with a linear programming approach. For example see this 45824522.

Of course, problem F2 has to be solved with a randomized-pivoting version of simplex algorithm (mine's is much simpler and shorter so it TLE's on Test 37).

The thing is that when you have this kind of conditions, the problem actually becomes solvable, because the matrix you have is totally unimodular (I didn't try to prove it this time, but I relied heavily on Problem D "Delight of a cat" from 2016-2017 NEERC Problemset).

Specially in online-contests on which you are allowed to copy-paste these long pieces of code, it's useful to be aware of this, because the actual writing part of the program is indeed straightforward.

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Could someone explain to me the logic behind this if statement in problem C: if (sum % 2 == 0 && sum / 2 <= MAX && cnt[sum / 2] > 0)?.

  • »
    »
    7 лет назад, скрыть # ^ |
    Rev. 2  
    Проголосовать: нравится 0 Проголосовать: не нравится

    Let i be the index of the number being removed from the array. Hence, the new sum will be equal to sum(original sum)-arr[i]. Now, let arr[j] be the number for with the property holds true. Therefore, arr[j] = sum(new sum) — arr[j] => arr[j] = sum/2. As all the numbers in the array are integers with their maximum value being 10^6, if such an arr[j] exists, sum should be divisible by 2 and sum/2 should be less than or equal to 10^6. cnt[sum/2] simply tells whether such a number exists or not.

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I am having trouble understanding tutorial logic,can anyone explain me problem 1077C — Good Array, Thanks

  • »
    »
    7 лет назад, скрыть # ^ |
    Rev. 8  
    Проголосовать: нравится 0 Проголосовать: не нравится

    So, think in this manner. For every i, can it be a nice index or not ? How can we think to solve it for every 'i' in reasonable time ? Well, let's try to think what all do we need to calculate to answer that if 'i' is nice or not? So, we need to remove 'i'th element and then check whether the remaining sum is exactly twice of a single element in the array(after excluding ith element).

    Finding the remaining sum is easy.(We can have a global sum variable and we will subtract a[i] from it).

    Now, How to check whether this is twice of single element or not ? (hash table ?) Sure, we can have a cnt[] array which will say, cnt[5] = 3, that means three 5's are in array. (think of it as occurence/ frequency array).

    Now, how this will help in finding the previous question ?

    Ans: We have sum(remaining sum after excluding ith element), we can check that if(cnt[sum/2] >1 and sum%2==0). i.e.(sum should be even and there should be an element in array equal to sum/2). But there is a catch. It could happen that ith element itself = sum/2. So. we need to tackle that too. Sure, we can have nasty if else.

    Tutorial presents an elegant way, which is:

    Find the sum(remaining sum)

    subtract this element from cnt array(by decrementing it)

    Now check for if(cnt[sum/2] >1 and sum%2==0)

    again add this elememt to cnt array.

    again add a[i] to sum.

    In case of some doubt, feel free to ask.

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can someone please explain why this code gave WA for problem F1 ?

»
7 лет назад, скрыть # |
 
Проголосовать: нравится +3 Проголосовать: не нравится

Another greedy approach for problem E:

If we have k distinct topics, let's call number of problems for j-th topic k[j] such that 0<=j<=k-1.

the following solution is built on an observation: if the optimal solution is to create X contests, then these X contests could be made from the X topics which have the largest number in array k.

So we need to sort array k to have the largest number in the beginning.

Then we need to know for every X (number of contests) what is the maximum number of problems we can use, let's call this number M.

We already know the answer to make 1 contest M = k[0]. Then for making 2 contests: M = min(M/2, k[1]). Generally M = min(M/2, k[X-1]). And finally for every X compute the answer as follows: ans= max( ans , M * ( 2^(X+1) — 1 ) ).

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone please tell me why problem F2 cannot be solvable with Segment Tree(or any RMQ Data Structure) ?

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Another solution for D without Binary search using priority_queue, 45895914.

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

solved F2 using DP DnC

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I am having trouble understanding the logic of 1077D — Cutting Out. Can someone please explain it and help me. Thanks!

  • »
    »
    7 лет назад, скрыть # ^ |
     
    Проголосовать: нравится +3 Проголосовать: не нравится

    NOTE: I was not able to solve it during the contest, but I was able to do it afterwards.

    This is one type of binary_search problem. You will encounter many such problems. General binary_search which you might have studied(or will study) in the university is done over an array of numbers. In this kind of problems, you need to perform the binary_search over the entire solution space.

    For e.g.: In this problem, you can consider the entire solution space as all numbers ranging from 1 to n (as you cannot have more than "n" copies).

    So, step 1 of this problem is to find the maximum number of copies which can be cut out from the the given array. Let me call this value as val. How we are going to find val, I will come back to that later. Let us move to Step 2

    Step 2

    Now, given that if we want to cut out val copies from the given array, can we do that ?

    In order to answer this question we need to first construct a frequency array (In this we will store the frequency of all given numbers).

    We need to construct an array of length k We iterate over all elements over the frequency array. First we check that whether the given key in frequency array has value more than val. If it has a value more than val. Then this can be used in the construction of the array.

    But there is an interesting catch here. Since, duplicates are allowed in the given answer, we might be able to use the same value again. So, we can use that value atmost floor(value/val) number of times.

    So this is basically the can function being talked in the above tutorial.

    Now coming back to Step 1.

    We need to figure out what values of val are valid. Minimum Val = 0 Maximum Val = n If we do a binary_search over this, then we will be able to get the MAXIMUM possible value of val.

    Another thing to note is binary_search can only be done when the array(solution space) is monotonically increasing. In this case, as mentioned in the tutorial, if you can create, val copies you can also create val - 1 copies.

    Here is my solution: http://mirror.codeforces.com/contest/1077/submission/45915120

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone please explain the problem statement of 1077B, I find it confusing especially that explanation of first test case and what does k pairwise district flat means? please illustrate with a test case. Thanks in advance!

  • »
    »
    7 лет назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    As I understood pairwise distinct simply means that none of them should be counted (turned-off) twice or more.

    Let's consider the first example

    10

    1 1 0 1 1 0 1 0 1 0

    (Their index is 1-based)

    As the statement, No. 3 and No. 6, No. 8 are disturbed (because both people next to them turned on)

    To make sure there are nobody "disturbed", you must turn off some lights. One way : we can turn No. 2, 4, 5, 7, 9 off. This way, the testcase turns to

    10

    1 0 0 0 0 0 0 0 0 0

    This was simple way to do the task : turn every light off which contributes making someone 'disturbed'

    However, we can do better. note that if we turn No.2 off, we don't have to turn No.4 off. No. 3 is already in peace.

    Note one more : if we turn No.7 off, we can make both No.6 and No.8 'not disturbed' by turning only one light off.

    If we turn 2 and 7 off,

    10

    1 0 0 1 1 0 0 0 1 0

    Nobody is disturbed.

    If we turn 4 and 7 off

    10

    1 1 0 0 1 0 0 0 1 0

    Nobody is disturbed.

    We can't do better (i.e. task is impossible by turning 1 light off), so the answer is 2.

    Hope this is helpful :)

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I can't understand, why in problem D solution this line is written ??

" if (!can(r)) can(l); " at the just end of binary search!

  • »
    »
    7 лет назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    cause in binary search, the solution used l = mid; if l = 2, r = 3, mid = 2 and can(mid)=true, this will be infinity loop.

    so you can see the loop ends where r-l>1 and after that r maybe an answer and l must be an answer.

    but at condition above, we didn't check whether r can be an answer, if it can, this will be the real answer because r>=l

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

can anyone please explain why i am getting WA. my approach: iterate through X let it be x and iterate through n let it be i. Then find maximum elemment in dp[i-k-k-1: i-1] [x-1], add ara[i] with it and save in dp[i][x]. submission

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

C isnt just a max segment tree?

»
7 лет назад, скрыть # |
Rev. 2  
Проголосовать: нравится +3 Проголосовать: не нравится

Can anyone help, why i am getting wrong answer at test case 12 in ques E. Here is my solution-https://mirror.codeforces.com/contest/1077/submission/54516795

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Getting TLE on using unordered_map, while AC on using map for problem E. Can anyone explain why??(I think unordered_map should be faste than map bcz its time complexity is O(1) for all operation.)

Link for TLE Solution

Link for AC Solution

»
5 лет назад, скрыть # |
 
Проголосовать: нравится +3 Проголосовать: не нравится

Hey guys.

I used max queue + DP to solve 1077F2 - Pictures with Kittens (hard version) in $$$\mathcal{O}(nx)$$$. Can someone please tell me why 106266241 TLEs and why 106266040 passes? Both codes are the same. The first submission is in C++14 (TLEs for TL = 2500 ms) and the second one is in C++17 (64) (which passes in just 982 ms). Why is the difference so huge? What can I do to avoid this in the future?

»
22 месяца назад, скрыть # |
Rev. 2  
Проголосовать: нравится 0 Проголосовать: не нравится

Problem F2 can be solved easily using deque data structure. Here's my easy solution using a deque that contains pair of integers {Value, Index}. The logic is this deque (kind of monotonous) will contain elements in increasing order of Value and will always push in front and pop from back.

»
3 месяца назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Late... but for anyone solving problem C in future... Sharing my idea :)

There is a nice greedy strategy (or you can say mathematical observation) in C, I'm surprised no one mentioned it in the comments/editorial...

My accepted idea was:

Intuition: Only the highest element or second highest element (special case) can be equal to the sum of the other elements.

Proof:

Sorted array: a1 a2 a3 a4 a5 a6

Now we have to remove 1 element and the sum of all other elements should be in the array...

Suppose you remove a6... so a1+a2+a3+a4 = a5 can be possible... (only 1 case for second highest as winner). But a1+a2+a3+a5 = a4 is not possible as ai >= 1 and a5 >= a4 so the left side will always be > a4

Now suppose you remove a5... so a1+a2+a3+a4 = a6 Cause a6 is the largest element... it can be formed by removing a1 / a2 / a3 etc.. but your target should be a6 If you take any other as target, a6 will make the sum bigger on the left side..

Now suppose you want a4 as sum of other elements while removing 1 element only. a1 + a2 + a3 + a5 + a6 = a4 can we do that?? NO...

suppose you remove a5 a1 + a2 + a3 + a6 = a4 as ai >= 1 and we know a6 >= a4 (same with removing a6), this means we cannot make sum = a4.

Hence proved. Only the highest and second highest elements (special case) matters

A simple iteration code works here after sorting the array with pair indices...

code: 362884344