腾讯2019 暑期实习提前批笔试 —— AcWing 570. 气球游戏
Posted JohnnyLin00
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了腾讯2019 暑期实习提前批笔试 —— AcWing 570. 气球游戏相关的知识,希望对你有一定的参考价值。
【题目描述】
【思路】
双指针,i在右,j在左。i从左至右依次扫描,每扫描一个相应更新s[ c[i] ]和颜色数colors,当颜色数达到要求m时,尝试移动j指针使得在满足colors==m的情况下,j离i越近越好。因此j的移动是有条件的,即:
s[ c[j] ] > 1 || c[j] == 0
import java.util.Scanner;
public class Main{
static int N = 1000010, M = 2010;
static int c[] = new int[N];// 序列数字
static int s[] = new int[M]; //s[i] 表示 编号为i的气球个数
public static void main(String args[]){
Scanner reader = new Scanner(System.in);
int n = reader.nextInt(), m = reader.nextInt();
for(int i = 0; i < n; i ++) c[i] = reader.nextInt();
//colors用于统计[i,j]区间的颜色种类数
int colors = 0;
int ans = n + 1;
// 双指针 i在右 j在左
for(int i = 0, j = 0; i < c.length; i ++)
{
//如果打中且打中的颜色没有出现过
if( c[i] != 0 && s[ c[i] ] == 0 ) colors ++;
s[ c[i] ] ++;
if( colors == m){// j指针尽可能地向i指针靠齐
while( s[ c[j] ] > 1 || c[j] == 0 ){
s[ c[j] ] --;
j ++;
}
ans = Math.min( ans, i - j + 1);
}
}
ans = (ans > n )? -1 : ans;
System.out.println(ans);
}
}
以上是关于腾讯2019 暑期实习提前批笔试 —— AcWing 570. 气球游戏的主要内容,如果未能解决你的问题,请参考以下文章
Week2 腾讯2019 暑期实习提前批笔试 —— ACWing 569. 猜拳游戏