比赛 202110省实验桐柏一中普及组联赛 评测结果 AWWWWWWWEE
题目名称 分配同桌 最终得分 10
用户昵称 求索 运行时间 0.416 s
代码语言 C++ 内存使用 1.34 MiB
提交时间 2021-10-18 20:27:39
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;

bool mapp[1005][1005];
bool tem;
int n,m;
int a,b;
int ans;


int main(){
	freopen("tongzhuo.in","r",stdin);
	freopen("tongzhuo.out","w",stdout);
	cin >> n >> m;
	while(cin >> a){
		cin >> b;
		mapp[a][b]=1;
	}
	for(int i=0;i<=n-m;i++){
		tem=0;
		for(int j=n-m+1;j<=n;j++){
			if(mapp[i][j]==1){
				tem=1;
			for(int o=n-m+1;o<=n;o++){
				mapp[j][o]=0;
			}
			break;
			}
		}
		if(tem){
			ans++;
		}
	}
	cout <<ans;
	return 0;
}