Vladosiya's blog

By Vladosiya, history, 2 years ago, In English

1980A - Problem Generator

Idea: Vladosiya Prepared by: Vladosiya

Tutorial
Solution

1980B - Choosing Cubes

Idea: ibraevdmitriy Prepared by: ibraevdmitriy

Tutorial
Solution

1980C - Sofia and the Lost Operations

Idea: ibraevdmitriy Prepared by: Gornak40

Tutorial
Solution

1980D - GCD-sequence

Idea: myav Prepared by: myav

Tutorial
Solution

1980E - Permutation of Rows and Columns

Idea: ibraevdmitriy Prepared by: ibraevdmitriy

Tutorial
Solution

1980F1 - Field Division (easy version)

Idea: MikeMirzayanov Prepared by: Vladosiya

Tutorial
Solution

1980F2 - Field Division (hard version)

Idea: MikeMirzayanov Prepared by: Vladosiya

Tutorial
Solution

1980G - Yasya and the Mysterious Tree

Idea: Gornak40 Prepared by: Gornak40

Tutorial
Solution
  • Vote: I like it
  • +56
  • Vote: I do not like it

| Write comment?
»
2 years ago, hide # |
 
Vote: I like it +4 Vote: I do not like it

Why is system testing so slow these days?

  • »
    »
    2 years ago, hide # ^ |
     
    Vote: I like it +8 Vote: I do not like it

    Because there are so many people participating in contests

  • »
    »
    2 years ago, hide # ^ |
    Rev. 2  
    Vote: I like it +7 Vote: I do not like it

    I guess it's due to the horrible 150+ tests of problem C... Most solutions took ~500ms on each test, which means that everyone who passed problem C(a large amount!) will take ~75 seconds to be judged

    Sometimes I wonder if it would be better to include anti-unordered data in the pretests. This might help avoid the pointless but time-consuming hack judging?

»
2 years ago, hide # |
 
Vote: I like it -8 Vote: I do not like it

C took 100 lines of code for me :(

  • »
    »
    2 years ago, hide # ^ |
     
    Vote: I like it +1 Vote: I do not like it

    It could be done in 20 lines ig

  • »
    »
    2 years ago, hide # ^ |
     
    Vote: I like it +12 Vote: I do not like it

    Here is a much simpler solution for Problem C.

    int n; cin>>n; int a[n],b[n]; read(a,n); read(b,n);
    int m; cin>>m; int d[m]; read(d,m);
    if(count(b,b+n,d[m-1])==0) no;
    map<int,int> diff;
    for(int i=0;i<m;i++) diff[d[i]]++;
    for(int i=0;i<n;i++)
    {
       if(a[i]!=b[i])
       {
         if(diff[b[i]]==0) no;
         diff[b[i]]--;
       }
    }
    yes;
    

    The last element of modification array has to be present in D. All the elements which are different in B from A have to be present in D as well to carry out the modification. Except for that any other element in D does not matter because you could be changing that element in A to an intermediate number but then you finally change it to what it is in B.

»
2 years ago, hide # |
Rev. 2  
Vote: I like it +1 Vote: I do not like it

E could be easily solved using set of sets: Solution Link

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

testcasesforces

»
2 years ago, hide # |
Rev. 3  
Vote: I like it +8 Vote: I do not like it

F is Mike's idea :O

But I think you can't avoid sort so the time complexity can't be $$$\mathcal O(n)$$$.

My sol for F:

Find all corners. Remove all corners and run the algorithm for a second time to get a second group of corners.

A fountain becomes a new corner (after one of the old corners is removed) if and only if:

  • it is among the second group of corners; and
  • it is covered by only one corner.

A corner $$$(u,v)$$$ covers the range {$$$(x,y)|x\in[1,u],y\in[v,m]$$$}.

A fountain becomes a new corner after removing the corner covers it.

It's easy to calculate change of area now.

264008397

(Why $$$\{$$$ -> $$${$$$)

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Can any one help me to understand problem c.? And send solution easly

  • »
    »
    2 years ago, hide # ^ |
     
    Vote: I like it +5 Vote: I do not like it

    Our goal is to find whether, given a list of sequential operations, an array could be translated into other or not.

    The only operations that matter here are when an element is changed between a[i] -> b[i]. We ensure all such operations (say, d_k) are actually present in d.

    Since d is also sequential, for any successful transformation, all d_k must be present at the end of d. As for a simple solution, kindly refer one from _Runtime__Terror_ a bit above in this discussion.

    Thanks.

»
2 years ago, hide # |
 
Vote: I like it +1 Vote: I do not like it

dang,how much longerr would the system testing go.

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Can anyone tell me, in C, why dm must be present in b? I read the question 50 times, still didn't understood.

  • »
    »
    2 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    since you have to apply all operations in the order they are given, then dm will always need to be applied last and there is no following operation that can replace it. Therefore it should appear in the final array

»
2 years ago, hide # |
 
Vote: I like it +1 Vote: I do not like it

YES NO forces

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Can someone explain why my submission 263986368 on problem c got a tle but something like this 263962017 didn't?

»
2 years ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

problem d, solution 1 — 263972949 failed system test (TLE), solution 2 — 264171599 passed all the tests, code — same in both letter by letter, only difference — solution 1 submitted on Python3 while solution 2 submitted on PyPy3, result — got a "-1" in place of a "+"

»
2 years ago, hide # |
 
Vote: I like it +3 Vote: I do not like it

Problem C solved in C, coincidence or intentional?

»
2 years ago, hide # |
Rev. 3  
Vote: I like it 0 Vote: I do not like it

Can someone explain why my submission 263980440 on problem C got TLE but this submission 264168646 didn't?

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

E can be done with Zobrist Hashing 264181127.

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

For problem E on the basis of the solution, at the end, after sorting both matrix A and B on the basis of rows as well as on the basis of columns, both should turn out to be equal then only our answer is YES. So to simplify my implementation i took the sum of each rows in A and in B in two vectors and finally after sorting checked if both come out to be same and i did same for the columns also, since the sum property should also satisfy since the numbers are unique but i am getting WA on test 2. Can anyone explain what's wrong with my given implementation. I am not able to think on which test case my implementation will fail. please help 264209981

  • »
    »
    2 years ago, hide # ^ |
    Rev. 2  
    Vote: I like it 0 Vote: I do not like it

    unique numbers does not guarantee a unique sum. (1,4) snd (2,3) have the same sum value, it is bound to give you wrong answer.

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

When I submitted problem 3 in the contest it showed accepted but right now it is showing TLE on test 10. Can anyone please explain why does this happen ? It has happened with me once before. (I am new to codeforces, so i don't know about all the rules)

  • »
    »
    2 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    You got hacked. (your code failed system testing) This is probably because you used unordered_map or something in your code. See the note at the end on editorial for C

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Video Editorial for D

https://youtu.be/O2-wL5OXyYc

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Resources to learn trie?

»
2 years ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

Can someone please tell me the mistakes in my solution to problem E (https://codeforces.me/contest/1980/submission/264239803)? I have used a simple sorting-based method.

»
2 years ago, hide # |
 
Vote: I like it -9 Vote: I do not like it

In problem F2 why the following code isn't giving TLE? What is time complexity of the loop for given problem ?

for(int i = 1; i <= k; ++i){
        auto e = a[i - 1];
        if(ans[idx[e]] == 0)continue;
        int tot = total[i - 1];
        int cr = cur[i - 1];
        int lst = last[i - 1];
        for(int j = i + 1; j <= k; ++j){
            auto ee = a[j - 1];
            if(cr > ee.y){
                tot += (cr - 1) * (lst - ee.x);
                cr = ee.y;
                lst = ee.x;
            }
            if(ans[idx[ee]] == 1){
                ans[idx[e]] = tot - total[j];
                break;
            }
        }
    }
»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Problem E is flexible and great mind!The Tuorial only introduce solved way.It's so upset>_<.Can Anyone explain that detailed the reason of way >_< ?

»
2 years ago, hide # |
 
Vote: I like it +5 Vote: I do not like it

Editorial code for C can also be hacked because qsort worst case is $$$O(n^2)$$$: https://codeforces.me/contest/1980/hacks/1033165

Code

Unexpected verdict means that one of the solutions marked on Polygon as Correct can't pass this test. Vladosiya Gornak40

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

I have no ideas why I got wrong answer on problem G: https://codeforces.me/contest/1980/submission/264341580. My solution is the same as editorial.

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Can somebody explain why it doesn't give TLE? I tried fixing each using rowswap and colswap and checked in the end if both matrices are equal or not. Submission

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

I am calculating that same sum of row and columns present in the array B or not

https://codeforces.me/contest/1980/submission/264546235

I am unable to find where it is failing. Can you tell some test case where it fail.

  • »
    »
    2 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    I don't think sum is an ideal hashing method.

    1
    2 3
    1 2 3
    6 4 5
    
    1 2 3
    5 6 4
    

    Read YES, expected NO.

    Hope it helps:)

»
2 years ago, hide # |
Rev. 2  
Vote: I like it -8 Vote: I do not like it

Can anyone help why my code for 1980G - Yasya and the Mysterious Tree is not working?

264619004

264609607

I am happy if any of the above two works.

»
2 years ago, hide # |
 
Vote: I like it +12 Vote: I do not like it

A O(nm) solution for E that uses xor hashes:

»
2 years ago, hide # |
 
Vote: I like it +8 Vote: I do not like it

Did someone solve problem G using Centroid Decomposition?

»
2 years ago, hide # |
Rev. 4  
Vote: I like it 0 Vote: I do not like it

Editorial solution to problem F2 is $$$O(k \log k)$$$ in the general case, but degenerates to $$$O(k^2)$$$ in the worst case (i.e., when all fountains are corners). Here's a truly $$$O(k \log k)$$$ solution: https://codeforces.me/contest/1980/submission/267832408

  • »
    »
    2 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    Editorial solution checks only the fountains between each two corners, and it never checks same fountain twice. In case of all fountains are corners then second loop immediately terminates (as the next fountain is corner). So, overall complexity is $$$O(K)$$$

    • »
      »
      »
      2 years ago, hide # ^ |
      Rev. 3  
      Vote: I like it 0 Vote: I do not like it

      That may be true, but we must not forget that the fountain locations are being sorted as a first step, and this takes at least $$$O(k \log k)$$$.

      • »
        »
        »
        »
        2 years ago, hide # ^ |
         
        Vote: I like it 0 Vote: I do not like it

        Oh yes, that's true. But I only mentioned the part which causes the complexity to be $$$O(K^2)$$$. But, The overall complexity of the whole code is obviously $$$O(K\log{K})$$$. And also small note, Sorting takes at most $$$O(K \log{K})$$$, not at least, as it indicates the worst complexity.

»
22 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Well, problem C's hacks are extraordinary. Even the author's code gets Time Limit Exceeded on test 156.

»
20 months ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

In problem C, will anyone explain why is it necessary to presence of dm in b? I mean if it is not present then we can assign it to some value which is already present then it will be overite?

»
17 months ago, hide # |
Rev. 4  
Vote: I like it 0 Vote: I do not like it

.