编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#22889 #1021. jwp的区间游戏 Accepted 100 745 ms 10204 K C++ 11 / 795 B Albot 2020-02-15 12:02:43
显示原始代码
#include <bits/stdc++.h>
using namespace std;
struct inter {
    int a;
    int b;
    bool operator<(const inter t) const { return this->a < t.a; }
    bool operator>(const inter t) const { return this->a > t.a; }
};
int main() {
    // freopen("in.txt","r",stdin);
    int n = 0;
    cin >> n;
    vector<inter> it(n);
    vector<int> temp(n);
    int i = 0;
    while (i < n) {
        cin >> it[i].a >> it[i].b;
        i++;
    }
    sort(it.begin(), it.end());
    i = 0;
    int right = it[0].b, cnt = 1;
    while (i < n) {
        if (right < it[i].a) {
            right = it[i].b;
            cnt++;
        } else if (right > it[i].b) {
            right = it[i].b;
        }
        i++;
    }
    cout << cnt << endl;
}
子任务 #1
Accepted
得分:100
测试点 #1
Accepted
得分:100
用时:2 ms
内存:276 KiB

输入文件(1.in

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>

答案文件(1.out

12

用户输出

12

系统信息

Exited with return code 0
测试点 #2
Accepted
得分:100
用时:2 ms
内存:356 KiB

输入文件(2.in

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>

答案文件(2.out

6

用户输出

6

系统信息

Exited with return code 0
测试点 #3
Accepted
得分:100
用时:33 ms
内存:924 KiB

输入文件(3.in

47669
17877 19471
11395 15218
2902 18871
26938 27448
7762 11681
34 8895
19658 23096
1358 229
<587181 bytes omitted>

答案文件(3.out

249

用户输出

249

系统信息

Exited with return code 0
测试点 #4
Accepted
得分:100
用时:325 ms
内存:8644 KiB

输入文件(4.in

706251
8804 16040
19927 24477
13287 18478
28138 29487
6264 25954
5313 29464
13205 16993
1231
<8702005 bytes omitted>

答案文件(4.out

915

用户输出

915

系统信息

Exited with return code 0
测试点 #5
Accepted
得分:100
用时:383 ms
内存:10204 KiB

输入文件(5.in

839841
12674 24824
27522 27672
2626 3317
2436 30329
13395 20482
4303 6729
14258 17390
380 39
<10347675 bytes omitted>

答案文件(5.out

1005

用户输出

1005

系统信息

Exited with return code 0