Educational Codeforces Round 37 B Tea Queue

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Educational Codeforces Round 37 B Tea Queue相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


用一个队列来模拟排队就好。
队列放三元组(x,y,z)
x表示人的下标,y和z分别表示进入和退出时间。
然后枚举时间从1到5000
看看有没有人在这个时刻入队。
有的话就入队。
入完之后。
再处理在队头的人。
如果已经超过了最晚时间,就找队列的下一个。

【代码】

#include <bits/stdc++.h>
using namespace std;

const int N = 1000;

int n;
vector<pair<int,int> > v;
queue<pair<int,pair<int,int> > > dl;
int ans[N+10];

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    int T;
    cin >> T;
    while (T--){
        memset(ans,0,sizeof ans);
        while (!dl.empty()) dl.pop();
        cin >> n;
        v.clear();
        for (int i = 1;i <= n;i++){
            int x,y;
            cin >> x >> y;
            v.push_back({x,y});
        }

        for (int now = 1,j = 0;now <= 5000;now++){
            while(j<n && v[j].first==now){
                dl.push({j+1,{v[j].first,v[j].second}});
                j++;
            }
            while (!dl.empty()){
                auto temp = dl.front();
                dl.pop();
                if (temp.second.second<now){
                    continue;
                }
                ans[temp.first] = now;
                break;
            }
        }

        for (int i = 1;i <= n;i++)
            cout<<ans[i]<<' ';
        cout<<endl;
    }
    return 0;
}

以上是关于Educational Codeforces Round 37 B Tea Queue的主要内容,如果未能解决你的问题,请参考以下文章

Educational Codeforces Round 7 A

Educational Codeforces Round 7

Educational Codeforces Round 90

Educational Codeforces Round 33

Codeforces Educational Codeforces Round 54 题解

Educational Codeforces Round 27