QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#874063#9730. Elevator IIyylxWA 42ms3840kbC++141.2kb2025-01-27 13:28:052025-01-27 13:28:06

Judging History

你现在查看的是最新测评结果

  • [2025-01-27 13:28:06]
  • 评测
  • 测评结果:WA
  • 用时:42ms
  • 内存:3840kb
  • [2025-01-27 13:28:05]
  • 提交

answer

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

struct Person {
    int id;
    int l;
    int r;
};

bool compare(const Person &a, const Person &b) {
    if (a.r == b.r) {
        return a.l > b.l; // 如果r相同,按l降序排列
    }
    return a.r > b.r; // 按r降序排列
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int T;
    cin >> T;
    while (T--) {
        int n, f;
        cin >> n >> f;
        vector<Person> people(n);
        for (int i = 0; i < n; ++i) {
            cin >> people[i].l >> people[i].r;
            people[i].id = i + 1;
        }
        
        // 按r降序排序
        sort(people.begin(), people.end(), compare);
        
        long long total = 0;
        int current = f;
        vector<int> order;
        for (auto &p : people) {
            int cost = max(p.l - current, 0);
            total += cost;
            total += (p.r - p.l);
            current = p.r;
            order.push_back(p.id);
        }
        
        cout << total << "\n";
        for (int i = 0; i < n; ++i) {
            cout << order[i] << (i == n - 1 ? "\n" : " ");
        }
    }
    
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3584kb

input:

2
4 2
3 6
1 3
2 7
5 6
2 5
2 4
6 8

output:

11
3 4 1 2
5
2 1

result:

ok ok 2 cases (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 42ms
memory: 3840kb

input:

6100
19 52
51 98
2 83
40 58
96 99
39 55
72 94
15 17
4 15
48 99
2 99
77 78
35 77
44 62
79 81
30 31
1 48
48 76
68 99
60 66
6 19
44 53
64 92
17 28
67 98
9 99
40 65
16 27
99 100
15 56
4 6
24 97
84 96
47 49
37 38
77 79
13 40
13 92
71 100
47 93
90 91
72 81
15 48
32 71
19 17
95 99
10 23
18 100
90 93
52 92
...

output:

568
4 18 9 10 1 6 2 14 11 12 17 19 13 3 5 16 15 7 8
194
5 4 2 6 1 3
469
1 11 4 5 12 10 13 14 8 16 2 6 15 9 7 3
734
3 1 10 8 6 4 17 5 16 13 11 7 15 12 18 14 9 19 2
260
2 8 6 12 5 4 14 10 11 3 9 1 15 13 7
422
18 1 6 11 10 2 7 13 9 4 12 20 14 5 15 8 19 16 3 17
104
4 1 3 2
203
8 3 1 4 2 6 7 5 9 10
164
3...

result:

wrong answer Participant's cost is 568, which is worse than jury's cost 524 (test case 1)