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

Автор vlade087, 11 лет назад, По-английски

Hello anybody can say me what mean when the problem have a tag two pointers. What mean this approach?

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

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

Look here

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

One of the recent problems involving two pointers is problem I:Pirate Chest from ICPC world finals 2013

This problem reduces to one-dimensional case: in integer array, for each element you want to find element that is lower than current on the left and right sides.

For every element you keep left and right positions for the element which is less than this element. (initially set to itselft). Iterate over descendant sorted array and update your info about pointers.

The problem's time limit pretty large. But involving some other NlogN approaches (such as fenwick tree) gives TL. By pointers you achieve lower constant.

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

+1

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

    Two pointers is really an easy and effective technique that is typically used for searching pairs in a sorted array. Given a sorted array A (sorted in ascending order), having N integers, find if there exists any pair of elements (A[i], A[j]) such that their sum is equal to X.

    Illustration :

    Let us do discuss the working of two pointer algorithm in brief which is as follows. The algorithm basically uses the fact that the input array is sorted. We start the sum of extreme values (smallest and largest) and conditionally move both pointers. We move left pointer ‘i’ when the sum of A[i] and A[j] is less than X. We do not miss any pair because the sum is already smaller than X. Same logic applies for right pointer j.

    Code

    Time Complexity: O(n2). Auxiliary Space: O(1)

    Lets solve EDU problem:

    step 1:

    Merging Arrays

    Code

    Number of Smaller

    Code

    Number of Equal

    Code

    step 2:

    Segment with Small Sum

    Code

    Segment with Big Sum

    Code

    Number of Segments with Small Sum

    Code

    Number of Segments with Big Sum

    Code

    Segments with Small Set

    Code

    Segments with Small Spread

    Code 1
    Code 2

    Coprime Segment

    Code

    step 3:

    Looped Playlist

    Code

    Total Length

    Code

    Che city

    Code

    Stylish clothes

    Code

    Knapsack on a Segment

    Code

    Card Substrings

    Code

    Not Very Rude Substring

    Code

    A-B Knapsack

    Code

    Segment with the Required Subset

    Code

    all you need to two pointer