编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#68700 #1021. jwp的区间游戏 Wrong Answer 0 484 ms 6932 K C++ 11 / 525 B 该起什么名字 2022-04-05 3:37:03
显示原始代码
#include <bits/stdc++.h>
using namespace std;
struct sz {
    int l, r;
} tx[1000005];
bool cmp(sz a, sz b) {
    if (a.l != b.l)
        return a.l < b.l;
    return a.r > b.r;
}
void test(int n) {
    for (int i = 0; i < n; i++) cout << tx[i].l << " " << tx[i].r << endl;
}
int main() {
    std::ios::sync_with_stdio(false);
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> tx[i].l >> tx[i].r;
    }
    sort(tx, tx + n, cmp);
    // test(n);
    int ans = 0;
    for (int i = 0; i < n;) {
        int R = tx[i].r;
        for (++i; tx[i].l < R && i < n; i++) {
        }
        ans++;
    }
    cout << ans;
    return 0;
}
子任务 #1
Wrong Answer
得分:0
测试点 #1
Wrong Answer
得分:0
用时:3 ms
内存:232 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

用户输出

5

Special Judge 信息

Files user_out and answer differ

系统信息

Exited with return code 0
测试点 #2
Wrong Answer
得分:0
用时:3 ms
内存:256 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

用户输出

4

Special Judge 信息

Files user_out and answer differ

系统信息

Exited with return code 0
测试点 #3
Wrong Answer
得分:0
用时:17 ms
内存:724 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

用户输出

6

Special Judge 信息

Files user_out and answer differ

系统信息

Exited with return code 0
测试点 #4
Wrong Answer
得分:0
用时:217 ms
内存:5816 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

用户输出

5

Special Judge 信息

Files user_out and answer differ

系统信息

Exited with return code 0
测试点 #5
Wrong Answer
得分:0
用时:244 ms
内存:6932 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

用户输出

5

Special Judge 信息

Files user_out and answer differ

系统信息

Exited with return code 0