Global and Local Inversions

题目
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 < j with 0 <= i < j < N and A[i] > A[j].

The number of local inversions is the number of i with 0 <= i < N and A[i] > A[i+1].

Return true if and only if the number of global inversions is equal to the number of local inversions.

答案

class Solution {
    // there is no global inversion with j > i + 1
    // basically, we want to find if there is a case where
    // A[i] > A[j], and j >= i + 2
    public boolean isIdealPermutation(int[] A) {
        if(A.length == 0) return true;
        int max = Integer.MIN_VALUE;
        for(int i = 0; i < A.length - 2; i++) {
            max = Math.max(max, A[i]);
            if(max > A[i + 2]) return false;
        }
        return true;
    }
}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容