AcWing 570. 气球游戏-java
原题链接
中等
作者:
单箭头
,
2019-05-16 22:02:34
,
所有人可见
,
阅读 1324
java 代码
public class 气球游戏 {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt(),m=sc.nextInt();
int[] colors=new int[n];
for (int i=0;i<n;i++) {
colors[i]=sc.nextInt();
}
int res=minWindow(colors,m);
System.out.println(res);
}
private static int minWindow(int[] nums,int m){
int cnt=m;
int[] dict=new int[m+1];
for (int i=1;i<=m;i++){
dict[i]++;
}
int begin=0,end=0;
int width=Integer.MAX_VALUE;
while (end<nums.length){
int endNum=nums[end++];
if (dict[endNum]-->0)
cnt--;
while (cnt==0){
if (end-begin<width)
width=end-begin;
int beginNum=nums[begin++];
if (dict[beginNum]++==0)
cnt++;
}
}
return width==Integer.MAX_VALUE?-1:width;
}
}