class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param tickets int整型vector 
     * @param k int整型 
     * @return int整型
     */
    int timeRequiredToBuy(vector<int>& tickets, int k) {
        // write code here
        int n=tickets.size();
        int time=0;

        queue<int> q;
        for(int i=0;i<n;i++)
        {
            q.push(i);
        }

        while(!q.empty())
        {
            int idx=q.front();
            q.pop();
            time++;

            tickets[idx]--;

            if(tickets[idx]>0)
            {
                q.push(idx);
            }

            if(idx==k&&tickets[idx]==0)
            {
                break;
            }
        }
        return time;
    }
};