UVA 1203 - Argus(優先隊列)

來源:互聯網
上載者:User

標籤:style   http   color   os   io   re   c   代碼   

UVA 1203 - Argus

題目連結

題意:給定一些註冊命令,表示每隔時間t,執行一次編號num的指令,註冊命令結束後,給定k,輸出前k個執行順序

思路:用優先隊列去搞,任務時間作為優先順序,每次一個任務出隊後,在把它下次執行作為一個新任務入隊即可

代碼:

#include <cstdio>#include <cstring>#include <queue>using namespace std;char str[10];struct Task {    int t, q, p;    Task(){}    Task(int t, int q, int p) {this->t = t;this->q = q;this->p = p;    }    bool operator < (const Task& a) const {if (t != a.t) return t > a.t;return q > a.q;    }};priority_queue<Task> Q;int main() {    int a, b;    while (~scanf("%s", str) && str[0] != '#') {scanf("%d%d", &a, &b);Q.push(Task(b, a, b));    }    int k;    scanf("%d", &k);    while (k--) {Task now = Q.top();Q.pop();printf("%d\n", now.q);now.t += now.p;Q.push(now);    }    return 0;}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.