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

Автор rebel_roar, история, 2 года назад, По-английски

Please, Can someone check my submission why my submission giving TLE ?

Submission

Полный текст и комментарии »

  • Проголосовать: нравится
  • -3
  • Проголосовать: не нравится

Автор rebel_roar, история, 2 года назад, По-английски

Please help me.

This is a problem of segment tree and this is my submission.

Please can someone check this and tell me why this gives TLE.

Thank You.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +4
  • Проголосовать: не нравится

Автор rebel_roar, история, 2 года назад, По-английски

Most of the time I got the wrong anwers on hidden test cases like Wrong Answer on 91 test case (Test 2) or 2000 test case (Test 7) etc.

Sometimes after trying all possible corner test cases and some random test cases I am not able to find which type of test case give the wrong answer.

I will highly grateful to you if you can give me some ideas which are really helpful to find those hidden test cases.

Thank You.

Полный текст и комментарии »

  • Проголосовать: нравится
  • -11
  • Проголосовать: не нравится

Автор rebel_roar, история, 3 года назад, По-английски

I am trying DP questions from a while but still i stuck in some questions Please clear my small doubt, Let's say in any DP question i need to make a dp matrix by considering a value in the row and another one in the column. My confusion is which one i should put in row and which one i should put in the column or i can put any of them at any place because in knapsack problem i can use any parameter in both row or column Here Using number of itmes in the row and here Using total weight in the row.

Thank you.

Полный текст и комментарии »

  • Проголосовать: нравится
  • -1
  • Проголосовать: не нравится

Автор rebel_roar, история, 3 года назад, По-английски

Can anyone help me, which is more efficient while using in the for loop?

for(u = 2; u <= sqrt(n); u++)

or

for(u = 2; u*u <= n; u++)

Here are my both submission

Using first method — 119098252

Using second method — 119098208

While using the first method i got TLE but the same code using with the second method got Accepted..

I am assuming that method one is calculating sqrt(n) again and again and other one is calculating u*u again and again then why one is got accepted other one is not.

Please tell me the reason behind this?

Полный текст и комментарии »

  • Проголосовать: нравится
  • +22
  • Проголосовать: не нравится