LeetCode içerisinde bulunan “Global and Local Inversions” sorusunun açıklaması ve çözümü. Bu soruda size verilen “global inversions” ve “local inversions” tanımlarına göre eşit olup olmadığı soruluyor.
🔥 LeetCode 775. Global and Local Inversions: https://leetcode.com/problems/global-and-local-inversions/
➡️ Problem açıklaması:
We have some permutation A of [0, 1, …, N – 1], where N is the length of A.
The number of (global) inversions is the number of i lessThan j with 0 lessEqual i less j lessThan N and A[i] biggerThan A[j].
The number of local inversions is the number of i with 0 lessEqual i lessThan N and A[i] biggerThan A[i+1].
Return true if and only if the number of global inversions is equal to the number of local inversions.
Example 1:
Input: A = [1,0,2]
Output: true
Explanation: There is 1 global inversion, and 1 local inversion.
Example 2:
Input: A = [1,2,0]
Output: false
Explanation: There are 2 global inversions, and 1 local inversion.
Note:
A will be a permutation of [0, 1, …, A.length – 1].
A will have length in range [1, 5000].
The time limit for this problem has been reduced.