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. 需要处理一些特殊情况.
  • 相关阅读:
    Apache xmlrpc
    认识serialVersionUID
    解压gz文件
    List of HTTP header fields
    Hadoop的Python语言封装
    httpcore in httpcomponent
    python enumerate 用法
    Hadoop Streaming Made Simple using Joins and Keys with Python « All Things Hadoop
    移位操作
    Chunked transfer encoding
  • 原文地址:https://www.cnblogs.com/ssorryqaq/p/10342384.html
Copyright © 2011-2022 走看看