QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#750299#9730. Elevator IISusie_Rain#AC ✓100ms13524kbC++202.1kb2024-11-15 13:57:522024-11-15 13:57:52

Judging History

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

  • [2024-11-15 13:57:52]
  • 评测
  • 测评结果:AC
  • 用时:100ms
  • 内存:13524kb
  • [2024-11-15 13:57:52]
  • 提交

answer

//  _____   _   _____    _____   _____   _      __    __
// |  ___| | | |  _  \  | ____| |  ___| | |     \ \  / /
// | |__   | | | |_| |  | |__   | |__   | |      \ \/ /
// |  __|  | | |  _  /  |  __|  |  __|  | |       \  /
// | |     | | | | \ \  | |___  | |     | |___    / /
// |_|     |_| |_|  \_\ |_____| |_|     |_____|  /_/
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
#define lowbit(i) ((i) & -(i))
#define ull unsigned long long
#define int long long
// #define i64 long long
#define endl '\n'
using namespace std;
const int mod = 998244353;
const int N = 2e5 + 10;

void solve()
{
    int n, now;
    cin >> n >> now;
    vector<int> ans;
    vector<array<int, 3>> a(n + 1);
    vector<array<int, 3>> b;
    for (int i = 1; i <= n; i++)
    {
        cin >> a[i][0] >> a[i][1];
        a[i][2] = i;
    }
    sort(a.begin() + 1, a.end());
    priority_queue<array<int, 3>, vector<array<int, 3>>, greater<array<int, 3>>> q;
    int j = 1;
    int ak = 0;
    while (1)
    {
        while (j <= n && a[j][0] <= now)
        {
            q.push({a[j][1], a[j][0], a[j][2]});
            j++;
        }
        while (q.size() && q.top()[0] < now)
        {
            auto [r, l, id] = q.top();
            q.pop();
            b.push_back({r, l, id});
        }
        if (q.empty())
        {
            if (j != n + 1)
            {
                ak += a[j][0] - now;
                now = a[j][0];
                continue;
            }
            break;
        }
        auto [r, l, id] = q.top();
        q.pop();
        now = r;
        ak += r - l;
        ans.push_back(id);
    }
    sort(all(b), greater<array<int, 3>>());
    for (auto [r, l, id] : b)
    {
        ans.push_back(id);
        ak += r - l;
    }
    cout << ak << endl;
    for (auto i : ans)
        cout << i << ' ';
    cout << endl;
    return;
}
signed main()
{
    ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
    int tt = 1;
    cin >> tt;
    while (tt--)
    {
        solve();
    }
    return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3596kb

input:

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

output:

11
2 1 4 3 
5
2 1 

result:

ok ok 2 cases (2 test cases)

Test #2:

score: 0
Accepted
time: 43ms
memory: 3888kb

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:

524
5 3 13 19 17 12 11 2 6 1 10 9 18 4 14 16 15 7 8 
194
3 5 4 2 6 1 
397
9 15 6 2 16 10 12 5 4 11 1 13 14 8 7 3 
733
2 9 14 18 12 15 7 11 13 16 5 17 4 6 8 10 1 3 19 
244
3 11 10 14 4 5 12 6 8 2 9 1 15 13 7 
422
17 18 1 6 11 10 2 7 13 9 4 12 20 14 5 15 8 19 16 3 
104
3 1 4 2 
187
6 4 1 3 8 2 7 5 9 1...

result:

ok ok 6100 cases (6100 test cases)

Test #3:

score: 0
Accepted
time: 100ms
memory: 11572kb

input:

3
100000 9859
150464 951410
637107 897197
236268 936879
353406 403927
511229 999416
861211 958428
186246 446149
162388 805753
449016 817386
147119 604340
579101 926848
958992 987299
859662 907007
507058 690951
719158 856587
789149 927957
691705 707085
694110 845505
192759 616586
905489 935507
937041...

output:

24903933702
37753 66110 38835 33575 72464 34118 73217 78069 55863 26464 77219 79424 41872 59114 80746 73133 92340 2549 22619 8632 59216 14210 34781 50453 94943 74816 59567 53577 5731 13372 21428 57625 89335 77277 28116 50574 75753 17419 80416 65348 83724 74130 4169 87752 77599 94038 587 18683 56261 ...

result:

ok ok 3 cases (3 test cases)

Test #4:

score: 0
Accepted
time: 83ms
memory: 13352kb

input:

3
100000 932101
80818 80823
538842 538844
406812 406818
625053 625054
511066 511073
667363 667365
527022 527023
621329 621331
855832 855852
796168 796169
268927 268929
650891 650895
312793 312794
873256 873260
424896 424929
266271 266272
902201 902209
842863 842864
361599 361610
647851 647855
148132...

output:

986597
61385 19954 82641 30352 11990 19101 19378 20783 23379 41138 47387 58790 61591 69618 73429 41160 30498 44088 74602 95031 34312 64927 43082 10872 13641 99646 70364 15412 20274 12832 69688 9367 16984 31364 97033 42804 6654 83583 94175 77157 82305 60601 21546 50908 21059 98950 61273 85593 47916 8...

result:

ok ok 3 cases (3 test cases)

Test #5:

score: 0
Accepted
time: 86ms
memory: 13524kb

input:

3
100000 375117879
637628712 637644704
788784579 788792294
804734775 804734822
332639566 332642798
143113598 143114045
132119073 132122341
684483097 684513821
484676670 484678332
661667340 661668818
777865379 777870254
142495696 142495995
101735856 101740588
906481102 906481965
360087766 360091064
1...

output:

872643717
43549 34676 31878 49124 12077 8140 13605 76831 10834 96613 83688 46028 65944 14511 56152 84791 1759 60404 73244 38124 93732 74294 8688 64153 56500 39213 27938 93350 21680 36926 8295 8832 69685 1025 22233 14796 83881 83105 72820 95432 90168 29163 20496 4937 51441 96515 46657 82775 90528 380...

result:

ok ok 3 cases (3 test cases)

Extra Test:

score: 0
Extra Test Passed