201709-2公共钥匙盒
Posted wudie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了201709-2公共钥匙盒相关的知识,希望对你有一定的参考价值。
#include<iostream>
#include<queue>
using namespace std;
struct _node
int num;//钥匙编号
char op;//操作 g:取钥匙 r还钥匙
int time;//某时间
bool operator <(_node a) const
if (time != a.time)
return time > a.time;
else
if (op != a.op)
return op < a.op;
else
return num > a.num;
;
priority_queue <_node> p;
int hook[1001];
int main()
int n, k;
cin >> n >> k;
int w, s, c;
_node t;
for (int i = 1; i <= n; i++)
hook[i] = i;
for (int i = 1; i <= k; i++)
cin >> w >> s >> c;
t.num = w;
t.op = 'g';
t.time = s;
p.push(t);
t.time =s + c;
t.op = 'r';
p.push(t);
while (!p.empty())
t = p.top();
p.pop();
if (t.op == 'g')
for (int i = 1; i <= n; i++)
if (t.num == hook[i])
hook[i] = 0;
break;
else
for(int i=1;i<=n;i++)
if (hook[i] == 0)
hook[i] = t.num;
break;
for (int i = 1; i <= n; i++)
cout << hook[i];
if (i != n)
cout << " ";
return 0;
抄的,真难,别人做的真简单,多看看
以上是关于201709-2公共钥匙盒的主要内容,如果未能解决你的问题,请参考以下文章