QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#788105#9730. Elevator IIshinonomezhouWA 44ms3632kbC++141.3kb2024-11-27 15:57:042024-11-27 15:57:07

Judging History

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

  • [2024-11-27 15:57:07]
  • 评测
  • 测评结果:WA
  • 用时:44ms
  • 内存:3632kb
  • [2024-11-27 15:57:04]
  • 提交

answer

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
#define endl "\n"
#define double long double

const int N = 3e5 + 10;
const ll INF = 0x3f3f3f3f3f3f3f;

ll n, m, k;
struct node
{
  ll l,r;
  int ind;
  bool operator< (const node &a)const{
    if(l==a.l)return  r>a.r;
    return l>a.l;
  }
};

void solve()
{
  ll f;
  cin>>n>>f;
  int l=1,r=n;
  vector<ll>ans(n+5,0);
  vector<pll>llr(n+5);
  priority_queue<node>pq;
  ll total=0;
  for(int i=1;i<=n;i++){
    ll l,r;cin>>l>>r;
    node tt={l,r,i};
    pq.push(tt);
    llr[i]={l,r};
  }
  ll cur=f;
  while(pq.size()>1){
    auto t1=pq.top();
    pq.pop();
    auto t2=pq.top();
    if(t1.l>=cur){
      cur=t1.r;
      ans[l++]=t1.ind;
      continue;
    }
    if(t1.r>=t2.l)
    {
      ans[l++]=t1.ind;
      cur=t1.r;
    }
    else{
      ans[r--]=t1.ind;
      cur=t1.r;
    }
  }
  auto tt=pq.top();
  ans[l]=tt.ind;
  llr[0].second=f;
  for(int i=1;i<=n;i++){
    total+=llr[ans[i]].second-llr[ans[i]].first+max(0ll,llr[ans[i]].first-llr[ans[i-1]].second);
  }
  cout<<total<<endl;
  for(int i=1;i<=n;i++){
    cout<<ans[i]<<' ';
  }
  cout<<endl;
}
int main()
{
  ios::sync_with_stdio(false);
  cin.tie(0);
  int _ = 1;
  cin >> _;
  while (_--)
    solve();
  return 0;
}

詳細信息

Test #1:

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

input:

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

output:

11
2 3 1 4 
5
2 1 

result:

ok ok 2 cases (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 44ms
memory: 3632kb

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:

556
16 2 10 8 7 15 12 5 3 13 17 9 1 18 6 14 4 11 19 
194
5 6 2 4 1 3 
403
9 10 15 2 4 16 6 12 11 14 5 1 13 8 7 3 
736
2 9 15 18 7 11 3 6 14 13 19 10 12 5 16 8 17 1 4 
257
7 13 9 3 1 11 10 14 5 6 4 2 8 12 15 
422
17 18 12 3 19 1 14 16 15 9 5 8 20 4 13 2 7 6 10 11 
104
3 4 1 2 
188
7 9 4 6 1 3 8 2 5 1...

result:

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