QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#745624#9730. Elevator IIvision#WA 97ms3968kbC++202.1kb2024-11-14 10:49:352024-11-14 10:49:36

Judging History

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

  • [2024-11-14 10:49:36]
  • 评测
  • 测评结果:WA
  • 用时:97ms
  • 内存:3968kb
  • [2024-11-14 10:49:35]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
#define lson k<<1
#define rson (k<<1)|1
#define debug cout<<666<<endl;
using namespace std;
const int N=1e6+5;
void vision()
{
    int n,now;
    cin>>n>>now;
    int st=now;
    map<pair<int,int>,vector<int>>mp;

    priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>q1;//fir xiao dao da
    priority_queue<pair<int,int>,vector<pair<int,int>>>q2;
    int ans=0;
    for(int i=1;i<=n;i++){
        int x,y;
        cin>>x>>y;
        mp[{x,y}].push_back(i);
        if(x<=now)q2.push({y,x});
        else q1.push({x,y});
    }
    vector<int>vv;
    vector<int>v;
    int p=0;
    while(q1.size()||q2.size()){
        pair<int,int>t;
        if(q2.size()!=0){
            t=q2.top();
            q2.pop();
        }
        else {
            t=q1.top();
            q1.pop();
        }
        ans=ans+abs(t.first-t.second);
        pair<int,int>tt={min(t.first,t.second),max(t.first,t.second)};
        // int w=mp[t][(int)mp[t].size()-1];
        // mp[t].pop_back();
        int w=*(--mp[tt].end());
        mp[tt].pop_back();
        if(now<min(t.first,t.second)){
            if(p==0){
                if(now<st){
                    p=1;
                    ans=ans+min(t.first,t.second)-st;
                }
                else {
                    ans=ans+min(t.first,t.second)-now;
                }
            }
            else {
                ans=ans+min(t.first,t.second)-now;
            }
        }
        if(p==1)vv.push_back(w);
        else v.push_back(w);
        now=max(t.first,t.second);
        while(q1.size()){
            if(q1.top().first<=now){
                q2.push(q1.top());
                q1.pop();
            }
            else break;
        }
    }

    cout<<ans<<"\n";
    for(auto it:vv)cout<<it<<" ";
    for(auto it:v)cout<<it<<" ";
    cout<<"\n";
    return ;
}
signed main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int t=1;
    cin>>t;
    while(t--){
        vision();
    }
    return 0;
}

详细

Test #1:

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

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: 97ms
memory: 3968kb

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
9 10 1 4 2 14 11 12 17 6 18 13 19 3 5 16 15 7 8 
194
5 4 2 1 6 3 
397
4 10 13 5 8 14 11 1 2 15 12 6 9 7 16 3 
733
7 8 1 4 17 15 18 16 9 5 12 10 19 13 14 2 6 3 11 
244
3 2 8 12 4 6 5 14 10 11 9 1 15 13 7 
422
18 11 10 6 7 2 13 4 20 8 5 9 15 16 14 1 19 3 12 17 
104
4 1 3 2 
187
4 8 2 3 1 6 7 5 9 1...

result:

wrong answer Participant's cost is 121, which is worse than jury's cost 117 (test case 9)