比赛 2024暑假C班集训8 评测结果 AAAAAAAAAA
题目名称 吉他 最终得分 100
用户昵称 小金 运行时间 0.388 s
代码语言 C++ 内存使用 2.87 MiB
提交时间 2024-07-08 10:55:19
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
struct xian{
    priority_queue<int> q;
}a[7];
int n,p;
long long ans;
int main()
{
    freopen("gitara.in","r",stdin);
    freopen("gitara.out","w",stdout);
    scanf("%d%d",&n,&p);
    for(int i=1;i<=n;i++)
    {
        int x,y;
        scanf("%d%d",&x,&y);
        while(a[x].q.size()&&a[x].q.top()>y)
        {
            a[x].q.pop();
            ans++;
        }
        if(a[x].q.size()==0||a[x].q.top()!=y)
        {
            a[x].q.push(y);
            ans++;
        }
    }
    printf("%lld",ans);
    return 0;
}