QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#768569#9730. Elevator IITauLee01#WA 0ms3680kbC++232.0kb2024-11-21 12:22:142024-11-21 12:22:16

Judging History

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

  • [2024-11-21 12:22:16]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3680kb
  • [2024-11-21 12:22:14]
  • 提交

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 (r != w.r)
            return r > w.r;
        return l > w.l;
    }
} a[N];
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;
    // int l = a[1].l, r = a[1].r;
    // pre(i, 2, n)
    // {
    //     if (r < a[i].l)
    //     {
    //         ve.push_back({l, r});
    //         l = a[i].l, r = a[i].r;
    //     }
    //     else
    //         r = max(r, a[i].r);
    // }
    // ve.push_back({l, r});
    // int pos = 0;
    // for (int i = 0; i < ve.size(); i++)
    // {
    //     if (ve[i].first >= f)
    //     {
    //         pos = i;
    //         break;
    //     }
    // }
    // // cout << pos << endl;
    // cout << ans << endl;
    // 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();
}

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3680kb

input:

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

output:

11
2 1 4 3 
4
1 2 

result:

wrong answer Participant declares the cost to be 4, but the plan actually costs 6 (test case 2)