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

Автор Supermagzzz, история, 3 года назад, По-русски

1538A - Каменная игра

Автор задачи: MikeMirzayanov

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

1538B - Друзья и конфеты

Автор задачи: MikeMirzayanov

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

1538C - Количество пар

Автор задачи: MikeMirzayanov

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

1538D - Еще одна задача про деление чисел

Автор задачи: MikeMirzayanov

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

1538E - Смешные подстроки

Автор задачи: MikeMirzayanov

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

1538F - Интересная функция

Автор задачи: Supermagzzz, Stepavly

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

1538G - Подарочный набор

Автор задачи: MikeMirzayanov

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

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

thanks for quick editorial

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

MikeMirzayanov is that your short solution for D? Lol

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

Why does I got tle when I used long long in my code in D where as same code accepted when I use int.

Submission link: int-https://codeforces.com/contest/1538/submission/119078431

Submission link: long long-https://codeforces.com/contest/1538/submission/119078279

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

I saw F so late ugh, sucks to miss on easy points

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

Great contest, I solved problem C with two pointers. Calculate the total number of pairs = (n *(n-1))//2, now calculate the pairs sum < L (using two pointers) let's call it A and calculate the pairs sum > R with the same approach let's call it B. So our answer will be total pairs — (A+B). Submission

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

Amazing problem set

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

I like the solution to E, looks pretty simple, I thougt it would be much more complecated.

But binary search in G is unclear, I cannot see the trick from the formulars. Why a ternary search does not work? And how does the function work on thats result we can binary search?

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

    Pretty sure a ternary search doesn't work because function isn't strictly increasing then decreasing, but feel free to correct me if I'm wrong.

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

      In my understanding there are two lines, and the optimum is reached where they cross. So it is non decreasing until that point, and non increasing afterwards.

      • »
        »
        »
        »
        3 года назад, # ^ |
        Rev. 4   Проголосовать: нравится +6 Проголосовать: не нравится

        u can binary search for the maximum number of gift sets. Let a < b and diff = b-a . Let the number of gift sets equals n, n is valid if and only if we can put n items which size = diff into 2 knapsacks which sizes = x-(a*n) and y-(a*n) https://codeforces.com/contest/1538/submission/119046681

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

          I did read some texts, watched a video... but still do not get how/why binary search works here. The code inside the while(l<r) loop looks completly arbitrary to me.

          Can you explain why it works, or how it works?

                      int m = r-(r-l)/2;
                      int ra = a-(x*m), rb = b-(x*m);
                      if(ra/temp+rb/temp >= m) l = m;  
                      else r = m-1;
          
  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится +6 Проголосовать: не нравится

    ternary search works but you have to use real numbers https://codeforces.com/contest/1538/submission/119051522

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

      That is what I tried to implement in my first submission Seems there is some implementation issue, maybe caused by rounding problems.

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

        I should have been clearer what I extended was the codomain, not the domain.

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

    I just noticed by the way

    Div3 is supposed to be unrated for anyone who "have a point of 1900 or higher in the rating."

    You do have such a point. But you gained rating in round 719

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

      Nah, you mix up two different things.

      It is rated for people up to 1600, current rating. And you are trusted up to 1900. Also current rating.

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

    It has a greedy solution if you're interested. first take the max(a,b) from max(x,y), and min from min. once they cross each other, or are equal,take sizes alternately like (b,a) (a,b). the submission is not clean, but it works. link

  • »
    »
    3 года назад, # ^ |
    Rev. 2   Проголосовать: нравится +1 Проголосовать: не нравится
    click
»
3 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

N/A

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

    division is done because the same pair will be counted twice and not sure but the condition checks that if we should not count the same index value as we should have two value from different index

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    1. While performing binary search for the numbers that fulfill the condition of a[i]+a[j]>=l && a[i]+a[j]<=r, it may occur that the number itself also fulfills this condition .So to resolve this we check if the number itself fulfills the condition ( a[i]+a[i]=2*a[i] ) and if it is so we remove one pair.

    2)This is done because in the question it is mentioned that i<j i.e i is always less than j , however in our code we are unable to check for this condition so for values of i>=j also the pairs are calculated. This means that all pairs are counted twice. To remedy this we divide our final ans by 2.

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

    learn about lower_bound and upper_bound !! great stuff imo!

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

    To better understand this try thinking like this:

    1. Sort the array

    2. Now for each index, think of two pointers on the right:

    3. to get left limit substract l - v[i], similarly to get right limit r - v[i]. (imagine to get sum as l we have to get numbers greater than or equal to left limit and to get sum as r we have to get numbers upto right limit.

    4. lower_bound and upper_bound for perfect for this as they get these values in log(N) time.

    5. after getting values check for extreme cases and also we dont want to check for previously calculated values, (keep between i+1 and n-1)

    6. count numbers in the range of left limit and right limit by substracting their indices.

    7. sum up all to get final answer.

    void solve (){
      int64 n,l,r,ans=0;
      cin>>n>>l>>r;
      vector<int64>v(n);
      for(auto&i:v)cin>>i;
      SORT(v);//step 1
      for(int i=0;i<n-1;i++){
        //step 2
        int left=l-v[i];//step 3
        int right=r-v[i];
        auto lower=lower_bound(all(v),left);//step 4
        auto upper=upper_bound(all(v),right);
        int low=i+1,upp=n-1;
        int lowpos = lower-v.begin(); //getting index from position
        int upppos = upper-v.begin()-1; //getting index from position
        if(lowpos>low)low=lowpos;//step 5 for lower limit
        if(upppos<upp)upp=upppos;//step 5 for upper limit
        //while(low<n && v[low]<left)low++; 
        //while(upp>i && v[upp]>right)upp--;
        //we can also get this by linear traversing but it takes
        //but it takes `O(N)` time
        //dont count for current index if no numbers exist for current number
        if(low==n)continue;
        if(upp<=i)continue;
        ans+=upp-low+1;//step 6 count sum
      }
      cout<<ans;
    }
    

    Submission link

    check this link to understand more about upper and lower bounds.

    Now answer to your 1st Question: During lower_bound we may also count the current number as 2*v[i] as lower limit but the question says i not equal to j (take different indexes). Same applies to upper limit

    Now answer to your 2nd Question: In my solution I have discarded previously calculated values, by keeping lower limit as i+1. But in the editorial OG has calculated all the numbers (all the pairs) for each index. That means they have been counted twice. Hence divide by 2.

    Hope its worth a vote :)

»
3 года назад, # |
  Проголосовать: нравится -12 Проголосовать: не нравится

Problem F is arguably easier than problem A Got stuck at A for a long time :(

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

My solution to C using policy-based ds. code

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

Editorial for D is wrong, $$$n$$$ should be the sum of exponents of prime divisors instead of the number of prime divisors.

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

    That's the same thing, since we count ALL prime divisors, not just distinct ones.

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

      Well, probably you can argue that we define prime divisors of a number as a multiset, but it is really weird (at least for me).

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

        I fully agree to you.

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

          One thing seems weird in D. if a==b then shouldn't k be equal to 0 ? so like since it is not mentioned that when they are equal we stop... maybe this is the reason, but dont we sort of generally stop when we reach the condition a==b? in any other q for eg

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

            No k shouldn't be equal to 0 , as you can still divide no.s from a and b if a==b

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

deleted

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

    Never I like being newbie I dont want to become or think like those screwed up brains like Mike,Awoo.I am happy I am dumb

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

Massively overcomplicated solution for F. This passes.

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

Why is the provided implementation for F so long and far-removed from the description? For example, my short implementation is here, and is immediate from the description in the editorial: 119035674

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

I feel dumb for getting WA 4x, only because of forgetting to use long long instead of int at problem C :v

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    #define int long long
    

    Hope it helps :p

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

      Its the same, either use "#define int long long" to stop getting WA but then you will get TLE on particular questions or try to remember using long long according to constraints and get WA sometimes. I prefer second, improves "attention" for other twists in other type of constraints too.

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

Less cumbersome implementation for D. code

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

i think naitikvarshney use invalid input for hacking solution of problem C. he have already hacked 95+ solution(including me). :+(

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

Thanks for such an interesting contest!

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

Looks like the code for problem D is wrong , Please correct it , the main issues are in Solve function where there are brackets but no for loops . MikeMirzayanov

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

I kind of applied the same logic in D, but not able to pass the tests. Can anyone tell me what am I missing link

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

    Your code marked all of the cases with $$$a$$$ equals $$$b$$$ as a no. But actually, there may be some cases when $$$a$$$ = $$$b$$$ and the answer is yes. For example:

    $$$1$$$

    $$$2$$$ $$$2$$$ $$$2$$$

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

We can also use linear programming optimization for problem G to solve it in O(1).

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

For 1538G - Gift Set following solution pass tests. We have following set of restrictions

  • n*a+m*b <= x
  • m*b+n*a <= y
  • n+m -> max
  • n, m are integers

Forget for a moment about last requirement (n, m are integers). Then, first two restrictions is basically region on n,m coordinate plane. And n + m is cost of each point within allowed region. Then, we can draw lines of fixed cost D: it's all point with cost D = n + m. Cost = 1 is line 1 = n + m. Cost 2 is line 2 = n + m and so on. It's easy to see that all of them are parallel, and when you increase D you actually move line perpendicular to it. Given line with cost 0 is 0 = n + m we know that cost of any point is actually distance to this line (n + m = 0).

So, we want to find point within region with highest distance to the line n + m = 0. What about region we have? It's convex polygon. Thus, largest distance to the line is equal to distance to some vertex of our polygon. So, if we forget about integer n, m, we can pick this vertex as answer. This is actually explanation how linear programming works in 2D space.

What can we do with integer n and m? Well, I just did hack: round n in arbitrary direction and tried few other integers around and this passed. 119052049 The question is: is it valid solution or is there counter test?

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

    Integer Programming in general is NP-hard. Just searching few points around the linear programming solution does not guarantee (integral) optimal solution.

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

    This should be correct. In this particular case, as we move away from the intersection point, we get closer to the $$$n + m = 0$$$ line, since one of the lines has a slope less than $$$n + m = 0$$$ and the other has a slope greater.

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

      It's more like intuition instead of formal proof. I would like to have formal proof, and here it is (at least some sort of).

      Messy long proof

      With this proof code becomes a bit easier: 119096819 (three points enough)

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

IN G, shouldn't the inequalities be x >= a*k + b*(n-k) and y >= a*(n-k) + b*k. Also, the second equation in the four-set of equations should have y and not x?

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

I think there's no need of keeping length in E, because we can handle special cases by checking if the prefix or suffix's length is less than 3.

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

In G tutorial it should be, x >= a⋅k+b⋅(n−k) y >= a⋅(n−k)+b⋅k and similarly, the next two equations will be changed accordingly. Supermagzzz correct it.

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

Can someone tell me why my code is failing for problem C. It is the same logic as the editorial only with an extra condition. 119012335

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

Could someone plz tell me as of why this submission of mine getting TLE whereas this one is passing?

The second submission uses sieve and map to store the values, whereas mine uses normal sieve. Still contrary to what should have occured, he received AC.

I have even seen submissions having the same implementation as of mine, but passing the constraints easily.. Why is this happening?

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

    Now what i did is- changed my long long to int data type and got AC plus a near about 1/3 execution time.. I have never seen so much of a difference just because of the change of data types. :(
    Could someone please give an insight on the same.

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

      Did you try it with a c++17 64 bit compiler? It is available on codeforces. Calculations with long long or long double data types are a lot slower.

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

Editorial's code for D is an eyesore

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

My solution to D is simpler I think


int pfact(int x) { int cnt=0; if(x%2==0){while(x%2==0)x/=2,cnt++;} for(int i=3;i*i<=x;i+=2) if(x%i==0){while(x%i==0)x/=i,cnt++;} if(x>1)cnt++; return cnt; } int m,n,x,y,z,k,t; int main() { ios_base::sync_with_stdio(false); cin>>t; while(t--) { cin>>x>>y>>k; int xx=pfact(x); int yy=pfact(y); if(xx+yy<k) cout<<"NO\n"; else { if(x==y&&k==1)cout<<"NO\n"; else if(k==1&&x!=1&&y!=1&&(x%y!=0&&y%x!=0))cout<<"NO\n"; else cout<<"YES\n"; } } return 0; }
  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится +11 Проголосовать: не нравится

    sadly in contest I used long long it barely passed so I'm a little scared

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

      thanks for telling, I will try to hack:)

      UPD : I cannot, it works fine.

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

        You're welcome it's better than waiting for tomorrow to know that it's TLE :P

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

          Can you explain this line: if(x > 1) cnt++ Is this to include 1 as a divisor

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

            No in any number there could be one prime factor bigger than sqrt like 11 without this line you won't count 11 as a factor

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

Got thrown into another dimension while solving E.

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

For problem G I have some $$$O(1)$$$ solution.

First, think about how we can solve the problem easily when constraints are $$$10^5$$$.

($$$a <= b$$$, otherwise swap them) ($$$x <= y$$$, otherwise swap them)

To solve this version we can easily brute force step by step and while we can create a new gift we will decrease $$$b$$$ from the higher one and $$$a$$$ from the remaining one this is optimal and proof left as an exercise to the reader.

But when constraints are $$$10^9$$$ we can't brute force so let's look at this solution and see what happens.

At first, let's assume $$$y - x <= b-a$$$ in this situation if we apply our brute force algorithm at each step higher one will change because $$$y-b <= x - a$$$ and their difference also won't exceed $$$b-a$$$ because $$$x-a-(y-b) <= b-a$$$,$$$x-y <= 0$$$ is true so for this type $$$x$$$ and $$$y$$$ we can solve problem with

$$$(x/(a+b))*2 + val$$$, $$$val$$$ is 1 if at the last we can't decrase $$$(a+b)$$$ from $$$x$$$ and $$$x >=a, y >= b$$$

And while $$$y-x > b - a$$$ this means we always decrease $$$b$$$ from $$$y$$$ so we can handle this until $$$y - x <= b-a$$$

Here is my implementation 119099472

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

    decrease b from the higher one and a from the remaining one this is optimal and proof left as an exercise to the reader.

    Can someone please prove it? I've done the same thing but couldn't prove it.

    EDIT: Never mind, got it now.

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

Is 10^4 * sqrt(10^9) complexity code acceptable everytime?

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

    I guess it's $$$10^4 \cdot \dfrac{\sqrt{10^9}}{\log(10^9)} \approx 30\ 000\ 000$$$ if you only check divisibility from primes.

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

For problem G, my solution is transfer the problem into an ILP problem, that is:

$$$ max. z = x_1 + x_2 \\ s.t. \left\{ \begin{array}{ll} ax_1 + b x_2 \le R\\ bx_1 + a x_2 \le B\\ x_1, x_2 \text{ are non-negative integer} \end{array} \right. $$$

Treat it as a LP problem and then use Simplex to get the value of $$$x_1$$$ and $$$x_2$$$ when $$$z$$$ is maximized. Since $$$x_1, x_2$$$ could be float numbers, and I guess the answer for ILP problem will be around $$$(x_1, x_2)$$$, so I search a few integer points around $$$(x_1, x_2)$$$.

(FST Warning

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

For bugaboo D, we can find all the primes till 1e5. There are less than 1e4 prime numbers in this range. Now, for each a and b, we check the divisibility with this list of primes. If none of the primes till 1e5 divide a, it means that 'a' itself is a prime number. Because any factor more than 1e5 would need a smaller factor less than 1e5, because 1e5*1e5 = 1e10, which exceeds the constrains on a and b. UPD — My code 119080458

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

119103856
Can any body hack my submission for Problem G ?
I didn't use binary search.

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

Supermagzzz, MikeMirzayanov, I think there is a typo in the tutorial of problem G: Maybe it should be $$$\frac{(y−a⋅n)}{b - a} ≤ k$$$ rather than $$$\frac{(x−a⋅n)}{b−a} ≥ k$$$, and $$$\frac{(x−a⋅n)}{a - b} ≥ k$$$ rather than $$$\frac{(x−a⋅n)}{a−b} ≤ k$$$.

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

I can hardly believe this is the difficulty of div3, but the problem is very good, I like it very much, thank you for your tutorial.

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

Is there a wrong about problem G in Codeforces Round #725 (Div. 3) Editorial. In the tutorial (x−a⋅n)b−a≥k may be (y−a⋅n)b−a≥k

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

Can anyone tell which corner case I am missing in the solution to problem D? I am getting WA on token 1021 of test case 2. Here's my link 119065848. Thanks.

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    if(k==1&&a!=1&&b!=1&&(a%b!=0&&b%a!=0))cout<<"NO\n";
    
    • »
      »
      »
      3 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Bro, I covered all corner cases still getting WA, c=this case also I have covered. Can you point out any possible case I am missing. Thank you.

      int p=max(a,b),q=min(a,b);
      
          if(p%q==0 && k==1) {
              cout<<"YES"<<'\n'; continue;
          } 
          if(factors(p)+factors(q)>=(ll)k && k!=1){
              cout<<"YES"<<'\n'; continue;
          }
          else cout<<"NO"<<'\n';

      Submission link: https://codeforces.com/contest/1538/submission/119430768

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

        In your factors function you should write while(a%2==0) instead of while(a%2!=0) so it's just a typo not logic mistake and you may get tle because in for loop you are writing i++ instead of i+=2 this i++ makes dividing a by 2 in the while loop pointless

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

use Java in C, about Arrays.sort()

AC

Long[] arr=new Long[n];
Arrays.sort(arr, Long::compare);

TLE

long[] arr=new long[n];
Arrays.sort(arr);
  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Can anyone tell, why it happens. even I am facing same issue, why its TLE while using long[] and passes on using Long[] ?

    Confused. Need help

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

Can anyone please point out mistakes in D's code? 119088308 It's failing on the 5053rd token in test case 2. UPD: Got it, thank you!

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

I got a tle in D because of using long long instead of int.

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

    Why, using long long would increase memory only and TLE could be understandable when recursions were used, but here no such cases are there. Please explain... I also submitted with long long only but it passed...119115670

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

Can someone provide me the test case of G where my solution fails 119117297

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

https://codeforces.com/contest/1538/submission/119118611

This is my dp solution of problem G . It is giving runtime error on testcase 5 that is for large x ,y and small a,b . could someone please tell the possible reasons for the error so that I do not repeat the same mistake again in future contests . Please .. Thanks in advance..

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

    I think it is giving Runtime error because for large values of x and y and a and b being small, the size of map would be greater than INT_MAX so you would not be able to store that many values and it is giving RE.

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

Seriously I didn't liked the implementation of D given in the editorial. I simply used some tricks to speed up the sqrt(max(a,b)) solution and it was good enough to pass the tests. :)

Here's the link of my submission : 119025249

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

In problem F, I think solve two related problem which the number of changed digits in $$$[1, l]$$$ and $$$[1, r]$$$ is better. Than, we can use a simple subtraction to get the answer.

If we focus on problem as $$$[1, x]$$$, we can find a way to calculate the ans: first, each digit can provide [ $$$11 \dots 11$$$ (the number of $$$1$$$ is $$$b$$$) $$$ * 10^b - 1$$$ ] changes ($$$b$$$ mean the current number of digits), than, we add $$$n - 1$$$ to the result, n is n-digits, finally, we get the correct answer.

For example, to problem $$$[1, 5678]$$$, calculate detail is: $$$(5 * 1111 - 1) + (6 * 111 - 1) + (7 * 11 - 1) + (8 * 1 - 1) + (4 - 1)$$$.

The logic of this way is the same as editorial. Here is my code, this may be clearer than my comment.My Code

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

I think that the implementation of the problem D solution is complicated! I have implemented it in a simpler way. Here is my code:119017802

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

Supermagzzz why are taking only a<b in 1538G - Gift Set ?

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

can anyone tell whats wrong in my code for C in given input for 4th test case it is giving ans 0.

»
3 года назад, # |
  Проголосовать: нравится -8 Проголосовать: не нравится

In problem G, why both of the equation is 1. x≤a⋅k+b⋅(n−k) 2. y≤a⋅(n−k)+b⋅k instead of x>=a⋅k+b⋅(n−k)

y>=a⋅(n−k)+b⋅k ? MikeMirzayanov

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

In problem G's solution, if I don't write the floor function while calculating ll right and instead write it as ll right=((x — m * b) / (a — b)), then why am I getting wrong answer. The integer division should give me the floor value, then why are we using floor function explicitly. Can someone help. Thank you.

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

    Let's say we get the range [3.5,5.5] because we're getting integers

    So the left interval is going to be 4, and the right interval is going to be 5

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

    Casting to an int will truncate toward zero. $$$floor()$$$ will truncate toward negative infinite. So, $$$int(-0.9) = 0$$$ and $$$floor(-0.9) = -1$$$

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

      Ok. So, can we say that, since the value here can be negative as well that is why we need to use floor. If it was guaranteed that the result will always be positive then we don't need to use floor function.

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

Questions about D floor and floorl What's the difference and 1.0l?

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

Can anyone tell me why this 119163197 for D is giving tle and not this 119163156

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

The editorial for G seems to be incorrect. The second reordered equation is given as (x−a⋅n)b−a>=k but it should be (y−a⋅n)b−a<=k in my opinion.

Also, I can't understand why we have used greater than or equal to in the first two equations. Can someone explain this part to me please? I think the equations should be : x>=a⋅k+b⋅(n−k)) and y>=a⋅(n−k)+b⋅k

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

In problem G editorial i feel it should be x>= a*k + b*(n-k) similarly for y y>=a*(n-k) + b*(k) bcs x and y should have sufficient candies.I would be very happy if someone correct my intuition.

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

Please can anybody find out my mistake in problem D:

My logic is to keep dividing a by 2 if it is even and increase count similarly keep dividing a by all odd numbers and increase count. Similar thing I will do for b. This count will be the maximum times I can divide a and b to get a=b=1.

In my code max==2 is for the case when both a and b are prime numbers.

My submission:https://codeforces.com/contest/1538/submission/119194346

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

    If a == b and a is not prime then you are setting min = 1 but atleast 2 division operations will be required in this case.

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

For G I felt compelled to speak about it.

My idea for the problem is nearly the same till the part of binary search on the max answer.

What I did next was since $$$a \ge b$$$ therefore an expression like $$$ap + bq$$$ where $$$p + q$$$ is a fixed value would yield a greater result for higher value of $$$p$$$ and therefore I decided to do another binary search on finding out the pair value $$$(p,q)$$$ which would cause the expression $$$ap + bq$$$ to be just below $$$x$$$ inclusive (as mentioned in the problem). This would cause the expression $$$aq + bp$$$ to be least and that's pretty much what we want to do since $$$aq + bp \le y$$$.

My idea uses another log in time complexity due to running binary search within binary search but I found it to be a lot lesser troublesome in terms of implementation against using floor or ceilings and therefore I decided to comment on G.

Link to my solution:- https://codeforces.com/contest/1538/submission/119120664

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

    cool idea...But I didn't understand how the idea of maximizing the value p(in second binary search) gives optimal answer?

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

      You want to make sure the first expression is $$$ \le x $$$ and second expression is $$$ \le y $$$

      so if u maximize the first expression as you can to be just below $$$x$$$ it would cause the second expression to go as low as possible.. and that's what we want because it's always better to take a lower value for any expression.

      Actually you can also do that other way around maximize the $$$q$$$ but then you have to run binary search for maximizing the second expression. ($$$aq + bp$$$)

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

I don't understand why E had very few submissions. Wasn't it simple bruteforce and hashing? btw I did in python.

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

It seems like the editorial on problem F is incorrect. The inequalities should be: $$$ x \geq k.a + (n-k).b$$$ and $$$ y \geq k.b + (n-k).a$$$. Hope the author correct it.

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

Can someone tell me why does the binary search in problem G code work? I'm not very experienced with binary search. Suppose we only have three possibles values right now, [1,2,3], and 2 satisfies the if condition. Then, we update the interval to [2,3]. The code stops here returning 2 as the answer. Why doesn't it check 3 too? Can't it be a posible better solution?

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

    In the editorial solution, l and r are taken as such that l <= n < r (where n is the req solution). So u don't need to check at r. U can look this

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

      So updating r = m and not checking it as a solution is the same as updating r = m-1 and do check it. Got it. Thanks!

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

Can anyone tell me why i am getting memory limit exceeded with my code in python forgive me if i did a big mistake . https://codeforces.com/contest/1538/submission/119263670

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

    Memory limit exceeded doesn't mean your code is wrong. The strings won't fit in some tests. Note that the input can be a first line with := and then 49 lines like x = x + x, so the string will need more than 2**49 bytes, and I believe 256MB to be 2**28 bytes, which is the limit for the problem.

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

who have better solve in problem D? i want to know, i can't understand MikeMirzayanov's solve in D...

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

plase easy write to problem D?i can't understand.

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

    There are some observations.

    1. Any number can be written as a product of its primefactors, and is divisible by all those primefactors, and all products of a subsets of those primefactors
    2. We can make the number a or b equals 1 in one operation, by choosing c equals to a or b, so we can make them both equal 1 in two operations.
    3. We can make the numbers a and b equal in one operation if a divides b or b devides a.
    4. The most operations we can do on a number until it equals 1 is the number of primefactors it has.

    From those rules above we can find a minimum number of operations, and a maximum number of operations. If k is in between them then ans="Yes".

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

      Sorry, didn't get this part. Why is this true?

      If k is in between them then ans="Yes".

      EDIT: I took one example and it's clear now.

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

I have tried writing solutions in Java for this(I'm not familiar with it, like I am with C++).

Could we have a list of tips&tricks to speed up our solutions? I have had many issues with TLE.

So far I found: - Scanner is not always fast enough to get Accepted - same with Arrays.sort - long is very slow

Experience: I wrote the same code for problem C like in the official solution, but apparently Arrays.sort gives TLE, even after I change the algorithm after sorting to an O(n) instead of O(nlogn).

In problem D, I managed to write a solution to get accepted, but after changing long to int the solution goes from ~1100 ms to ~500ms. Lots of TLE before. If I use int, even unoptimized solutions pass(reads with Scanner, factorization without precomputing primes or even going through all even numbers as possible factors).

Also, my lack of experience with Java showed in other ways: - I had to implement swap of two variables manually(I was not able to find the library version) - I had to implement upper bound and lower bound manually, again I could not find the library version - I do not have a fast, optimized read/write class to copy/paste in my solution(frankly, I don't even know which one would that be, there seem to be many options).

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

.

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

Can anyone explain what floorl and ceill are in the solution of problem G. And is 1.0l used to convert to float like 1LL/0LL is used to convert to long long. Thanks in advance!

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

where the wrong in that ?? 128818547 //D

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

where the wrong in that ??

128818547//D

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

Does anyone know why this (145191446) solution fails for problem G?

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

I implemented the solution for problem D, but I got WA. Could someone help me figure out where my code breaks?

145908397

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

In problem G I think Inequalties should be x≥a⋅k+b⋅(n−k) y≥a⋅(n−k)+b⋅k

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

I am facing an issue in D problem 1538D - Another Problem About Dividing Numbers when I use int the test case passes but on using Long Long it gives TLE I don't understand how it is creating such a big difference.

PS:

INT: passed test cases i.e. Accepted (1559ms) 169586396

LONG LONG: TLE on 6th test case (2000ms) 169586970

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

How to calculate sum of exponents of prime divisors of a in problem D ``

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

For problem C, Even though I submitted an nlogn solution, I'm getting TLE. I'm using multiset. My submission link : 232464801