主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
My_opt
2022年4月26日 19:23
c++
P1732
回复 0
|
赞 0
|
浏览 3.9k
#include <iostream> using namespace std; const int N = 110; int n, a, b, c, d; int main() { while (cin >> n) { int cnt = 0; bool pic[N][N] = {false}; for (int k = 0; k < n; k ++ ) { cin >> a >> b >> c >> d; for (int i = a; ...
tongzeliang
2022年4月22日 23:01
使用set容器,编写仿函数实现自定义排序,最终输出容器元素个数
P1732
回复 0
|
赞 1
|
浏览 4.1k
#include<iostream> #include<set> using namespace std; class coordinater { public: coordinater(int x, int y) { this->x = x; this->y = y; &nbs...
题目
面积涂色问题
题解数量
2
发布题解
热门题解
1
使用set容器,编写仿函数实现自定义排序,最终输出容器元素个数
2
c++