131
272 428
185 936
3 288
271 549
707 958
362 614
128 778
512 570
233 880
68 475
517 986
<1061 bytes omitted>
用户输出
12
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#22580 | #1021. jwp的区间游戏 | Accepted | 100 | 276 ms | 6876 K | C++ 17 / 963 B | 机类910-尚锦奥 | 2020-02-13 14:20:19 |
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <queue>
#include <vector>
#include <stack>
#include <set>
#include <cmath>
#include <bitset>
#define lson node << 1
#define rson node << 1 | 1
using namespace std;
#define ll long long
const ll maxn = 1e6 + 10;
ll read() {
char c = getchar();
ll x = 0;
ll flag = 1;
while (c < '0' || c > '9') {
if (c == '-')
flag = -1;
c = getchar();
}
while (c >= '0' && c <= '9') {
x = x * 10 + c - 48;
c = getchar();
}
x *= flag;
return x;
}
struct node {
int x, y;
} a[maxn];
int cmp(node a, node b) {
if (a.y == b.y)
return a.x < b.x;
else
return a.y < b.y;
}
int n;
int cur = 0;
int cnt = 0;
int main() {
n = read();
for (int i = 1; i <= n; i++) {
a[i].x = read(), a[i].y = read();
}
sort(a + 1, a + n + 1, cmp);
for (int i = 1; i <= n; i++) {
if (cur <= a[i].y && cur >= a[i].x)
continue;
cur = a[i].y;
cnt++;
}
printf("%d", cnt);
return 0;
}
131
272 428
185 936
3 288
271 549
707 958
362 614
128 778
512 570
233 880
68 475
517 986
<1061 bytes omitted>
用户输出
12
系统信息
Exited with return code 0
43
27 52
40 72
16 58
45 77
74 99
17 18
39 64
30 94
2 88
14 93
85 86
6 28
86 93
29 45
<200 bytes omitted>
用户输出
6
系统信息
Exited with return code 0
47669
17877 19471
11395 15218
2902 18871
26938 27448
7762 11681
34 8895
19658 23096
1358 229
<587181 bytes omitted>
用户输出
249
系统信息
Exited with return code 0
706251
8804 16040
19927 24477
13287 18478
28138 29487
6264 25954
5313 29464
13205 16993
1231
<8702005 bytes omitted>
用户输出
915
系统信息
Exited with return code 0