Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
156394 | 李树强 | 闭区间问题 | C++ | 解答错误 | 40 | 0 MS | 256 KB | 765 | 2024-07-17 11:09:45 |
#include<iostream> #include<algorithm> using namespace std; struct stu{ int start, end; bool is_in; void input(){ cin >> start >> end; if(start > end) swap(start, end); is_in = false; } bool operator == (const stu & o) const{ return start < o.end || end < o.start; } bool operator != (const stu & o) const{ return !(start < o.end || end < o.start); } bool operator < (const stu & o) const{ return end < o.end; } }; stu ary[100010]; int main(){ int n; cin >> n; for(int i = 0; i < n; i++){ ary[i].input(); } sort(ary, ary + n); int cnt = 0; int now = 0; for(int i = 0; i < n; i++){ if(ary[i].start >= now){ cnt++; now = ary[i].end; } } cout << cnt; return 0; }