比赛 |
2024暑假C班集训8 |
评测结果 |
AAAAAAAAAA |
题目名称 |
吉他 |
最终得分 |
100 |
用户昵称 |
liuyiche |
运行时间 |
0.429 s |
代码语言 |
C++ |
内存使用 |
2.94 MiB |
提交时间 |
2024-07-08 09:14:36 |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int n, p, ans = 0;
struct node
{
priority_queue<int,vector<int>,less<int> > q;
};
node v[10];
int main()
{
freopen("gitara.in", "r", stdin);
freopen("gitara.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> n >> p;
for(int i = 1; i <= n; ++i)
{
int x, y;
cin >> x >> y;
if(v[x].q.size() == 0)
{
v[x].q.push(y);
ans++;
}
else if(v[x].q.top() < y)
{
v[x].q.push(y);
ans++;
}
else
{
while(v[x].q.size() > 0 && v[x].q.top() > y)
{
v[x].q.pop();
ans++;
}
if(v[x].q.size() == 0 || v[x].q.top() < y)
{
v[x].q.push(y);
ans++;
}
}
}
cout << ans;
return 0;
}