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