摘要: 输入的时间是递增的 输出 的时[t-3000,t] queue <int>q; int ping(int t){ q.push(t); while(q.front<t-3000){ q,pop(); } return q.size(); } 阅读全文
posted @ 2023-07-03 13:55 iu本u 阅读(17) 评论(0) 推荐(0)