zoukankan      html  css  js  c++  java
  • 打印队列 UVA12100

    打印队列

    UVA12100打印队列


    
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int t;
        cin >> t;
        while (t--)
        {
            queue<int> q;
            priority_queue<int> pq;
            int n,m,s;
            cin >> n >> m;
            for (int i=0;i<n;i++)
            {
                cin >> s;
                q.push(s);pq.push(s);
            }
            int x = 0;
            while (true)
            {
                if (q.front() == pq.top())
                {
                    if (x == m)
                    {
                        cout << n - q.size() + 1 << endl;
                        break;
                    }
                    else
                    {
                        q.pop();pq.pop();
                        x++;
                    }
                    
                }
                else
                {
                    int t = q.front();
                    q.pop();q.push(t);
                    if (x == m)
                    {
                        x = 0;
                        m = q.size() - 1;
                    }
                    else
                        x++;
                    
                }
                
            }
            
        }
        return 0;
    }
    
    
    

    总结

    1. 需要用队列+优先队列模拟
    2. 需要处理一些特殊情况.
  • 相关阅读:
    接口的设置
    总结一下《vue的使用》
    标准时间对象的转换
    类数组转换为数组
    异步函数
    vue中moudles的作用及使用方法
    es5数组的新方法
    React JSX
    React更新元素 基础
    React将某段文字插入到某个元素里
  • 原文地址:https://www.cnblogs.com/ssorryqaq/p/10342384.html
Copyright © 2011-2022 走看看