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. 需要处理一些特殊情况.
  • 相关阅读:
    Kafka开启JMX监控
    不用再上官网,自己部署一套ElementUI官方最新文档
    Idea没安装几款好用的插件,怎么风骚的写代码???
    springboot2.x基础教程:动手制作一个starter包
    springboot2.x基础教程:自动装配原理与条件注解
    Java Jar源码反编译工具那家强
    Jmeter 乱码解决方法
    robot frame基础知识--变量
    HTML基础--标签
    yaml模块
  • 原文地址:https://www.cnblogs.com/ssorryqaq/p/10342384.html
Copyright © 2011-2022 走看看