g1001_1100.s1024_video_stitching.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g1001_1100.s1024_video_stitching;
// #Medium #Array #Dynamic_Programming #Greedy #2022_02_26_Time_1_ms_(88.78%)_Space_42.3_MB_(11.00%)
import java.util.Arrays;
public class Solution {
public int videoStitching(int[][] clips, int time) {
Arrays.sort(clips, (a, b) -> a[0] == b[0] ? a[1] - b[1] : a[0] - b[0]);
int count = 0;
int covered = 0;
int i = 0;
int start = 0;
while (start < time) {
while (i < clips.length && clips[i][0] <= start) {
covered = Math.max(covered, clips[i][1]);
i++;
}
if (start == covered) {
return -1;
}
count++;
start = covered;
}
return count;
}
}