Codility #3. FrogRiverOne

1802 ワード

うん.現在、コンディリティのプラットフォームはインクカートリッジなので、正解は確認できませんでした.
sktコードテストで失敗したそうです
とにかく問題はそんなに難しくない.indexedtreeの問題に少し着目して解く.
クラスを使用しない場合もあるかもしれませんが、ディックシェリー値を得るために、使用クラスは簡単に解けました.
ここで注意したいのは、ソート時に位置の移動率は必ず時間の小さい順にソートし、位置の移動率は後で現れる時間を無視することです.
// you can also use imports, for example:
// import java.util.*;

// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");

import java.util.Arrays;

class Solution {
    public static class node implements Comparable<node>{
        int position;
        int time;
        public node(int time, int position) {
            this.time = time;
            this.position = position;
        }
        @Override
        public int compareTo(node o) {
            int pos = Integer.compare(this.position, o.position);
            if(pos == 0) {
                return Integer.compare(this.time, o.time);
            }
            return pos;
        }
    }    
    public int solution(int X, int[] A) {
        // write your code in Java SE 8
		node[] list = new node[A.length];
		for(int i = 0; i < A.length; i++) {
			list[i] = new node(i,A[i]);
		}
		Arrays.sort(list);
		int max = 0;
        boolean flag = false;
		int curr = 0;
		for(node em : list) {
			if(em.position == curr) {
				continue;
			}
            if(curr + 1 != em.position){
                break;
            }
			curr = em.position;
			if(em.time > max) {
				max = em.time;
			}
			if( em.position == X) {
                flag = true;
				break;
			}
		}
        if (!flag){
            max = -1;
        }
        return max;
    }
}