比赛 |
2024暑假C班集训8 |
评测结果 |
AWAWAWTTTT |
题目名称 |
吉他 |
最终得分 |
30 |
用户昵称 |
KKZH |
运行时间 |
4.132 s |
代码语言 |
C++ |
内存使用 |
5.16 MiB |
提交时间 |
2024-07-08 11:48:52 |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
bool a[10][300010]={0};
int n,m;
int ans=0;
int main(){
freopen("gitara.in","r",stdin);
freopen("gitara.out","w",stdout);
scanf("%d%d",&n,&m);
int c,b,e;
for(int i=0;i<n;i++){
e=0;
scanf("%d%d",&c,&b);
for(int j=b+1;j<m;j++){
if(a[c][j]==1){
++e;
a[c][j]=0;
}
}
if(a[c][b]!=1){
++e;
}
a[c][b]=1;
ans+=e;
}
printf("%d",ans);
return 0;
}