QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#768607#9730. Elevator IITauLee01#RE 0ms0kbC++232.4kb2024-11-21 12:51:482024-11-21 12:51:48

Judging History

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

  • [2024-11-21 12:51:48]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-11-21 12:51:48]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define _                    \
    ios::sync_with_stdio(0); \
    cin.tie(0);              \
    cout.tie(0);
#define int long long
#define pre(i, a, b) for (int i = a; i <= b; i++)
#define rep(i, a, b) for (int i = a; i >= b; i--)
const int N = 1e6 + 10;
#define pii pair<int, int>
struct node
{
    int l, r, id;
    bool operator<(node w)
    {
        if (l != w.l)
            return l < w.l;
        return r < w.r;
    }
} a[N];
bool cmpp(node a, node b)
{
    if (a.r != b.r)
        return a.l < b.r;
}
int n, f;
void solve()
{
    cin >> n >> f;
    int ans = 0;
    pre(i, 1, n)
    {
        cin >> a[i].l >> a[i].r;
        a[i].id = i;
        ans += a[i].r - a[i].l;
    }
    sort(a + 1, a + 1 + n);
    // ans += max(0ll, a[n].l - f);
    // cout << ans << endl;
    // rep(i, n, 1)
    //         cout
    //     << a[i].id << " ";
    // cout << endl;
    vector<pii> ve;
    vector<pair<int, int>> vv;
    int l = a[1].l, r = a[1].r;
    int now = 1;
    pre(i, 2, n)
    {
        if (r < a[i].l)
        {
            ve.push_back({l, r});
            vv.push_back({now, i - 1});
            now = i;
            l = a[i].l, r = a[i].r;
        }
        else
            r = max(r, a[i].r);
    }
    // ve.push_back({l, r});
    // vv.push_back({now, n});
    // cout << vv.size() << endl;
    // for (auto [aa, b] : vv)
    //     cout << aa << " " << b << endl;
    // return;

    int pos = 0;
    for (int i = 0; i < ve.size(); i++)
    {
        if (ve[i].first >= f)
        {
            pos = i;
            break;
        }
    }
    for (auto [aa, b] : vv)
    {
        if (aa > pos)
            break;
        sort(a + aa, a + b + 1, cmpp);
    }
    // cout << pos << endl;
    // cout << ans << endl;
    // return;
    vector<int> res;
    pre(i, 1, n)
    {
        if (a[i].l >= f)
            res.push_back(a[i].id);
    }
    rep(i, n, 1)
    {
        if (a[i].l < f)
            res.push_back(a[i].id);
    }
    ans += max(0ll, ve[pos].first - f);
    for (int i = pos + 1; i < ve.size(); i++)
        ans += ve[i].first - ve[i - 1].second;
    cout << ans << endl;
    for (auto L : res)
        cout << L << " ";
    cout << endl;
}
signed main()
{
    _;
    int t = 1;
    cin >> t;
    while (t--)
        solve();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Runtime Error

input:

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

output:


result: