1700. Number of Students Unable to Eat Lunch

1700. Number of Students Unable to Eat Lunch #

题目 #

学校的自助午餐提供圆形和方形的三明治,分别用数字 01 表示。所有学生站在一个队列里,每个学生要么喜欢圆形的要么喜欢方形的。

餐厅里三明治的数量与学生的数量相同。所有三明治都放在一个 里,每一轮:

  • 如果队列最前面的学生 喜欢 栈顶的三明治,那么会 拿走它 并离开队列。
  • 否则,这名学生会 放弃这个三明治 并回到队列的尾部。
  • 这个过程会一直持续到队列里所有学生都不喜欢栈顶的三明治为止。

给你两个整数数组 studentssandwiches ,其中 sandwiches[i] 是栈里面第 i 个三明治的类型(i = 0 是栈的顶部), students[j] 是初始队列里第 j 名学生对三明治的喜好(j = 0 是队列的最开始位置)。请你返回无法吃午餐的学生数量。

思路 #

  • 模拟
  • 计数

代码 #

模拟 #

class Solution {
    public int countStudents(int[] students, int[] sandwiches) {
        /** 初始化三明治 */
        Stack<Integer> sandwichesStack = new Stack<>();
        for (int i = sandwiches.length - 1; i >= 0; i--) sandwichesStack.push(sandwiches[i]);
        
        /** 初始化学生队列 */
        Queue<Integer> studentsQueue = new LinkedList<>();
        for (int i = 0; i < students.length; i++) studentQueue.offer(students[i]);
        
        boolean needNewCircle = true;
        while (needNewCircle == true) {
            needNewCircle = false;
            
            for (int i = 0; i < studentsQueue.size(); i++) {
                if (studentsQueue.peek() == sandwichesStack.peek()) {
                    studentsQeueu.poll();
                    sandwichesStack.pop();
                    needNewCircle = true;
                } else {
                    studentsQueue.offer(studentsQueue.poll());/
                }
            }
        }
        
        return studentsQueue.size();
    }
}

计数 #

致谢 #

宫水三叶