QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#744050 | #9730. Elevator II | shenchuan_fan | WA | 119ms | 3868kb | C++20 | 1.9kb | 2024-11-13 20:41:42 | 2024-11-13 20:41:48 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
#define x first
#define y second
using namespace std;
using LL = long long;
typedef pair<int, int> PII;
const int N = 1e7 + 10, M = 5010, mod = 998244353;
const int inf = 1e9;
struct node{
int x, y, id;
};
void solve() {
int n, f;
cin >> n >> f;
int ans = 0;
vector <node> a(n + 1);
for(int i = 1; i <= n; i++){
cin >> a[i].x >> a[i].y;
a[i].id = i;
ans += a[i].y - a[i].x;
}
//cout << ans << "\n";
sort(a.begin() + 1, a.end(), [&](node a, node b){
return a.x < b.x;
});
multiset <int> R;
R.insert(f);
vector <int> nxt(n + 1);
map <int, vector<int>> mp;
/*for(int i = 1; i <= n; i++){
R.insert(a[i].y);
mp[a[i].y].push_back(a[i].id);
}*/
mp[f].push_back(0);
/*for(int i = 1; i <= n; i++){
auto [u, v, idx] = a[i];
cout << i << ": " << u << " " << v << " " << idx << "\n";
}
cout << "\n";*/
for(int i = 1; i <= n; i++){
auto [u, v, idx] = a[i];
auto it = R.lower_bound(u);
if(it == R.end()){
auto it2 = prev(it);
int t = *it2;
ans += u - t;
R.erase(R.find(t));
nxt[mp[t].back()] = idx;
//cout << mp[t].back() << " " << idx << "\n";
mp[t].pop_back();
}else{
int t = *it;
nxt[mp[t].back()] = idx;
}
R.insert(v);
mp[v].push_back(idx);
}
/*for(int i = 0; i <= n; i++){
cout << nxt[i] << " \n"[ i == n ];
} */
set <int> unuse;
for(int i = 1; i <= n; i++){
unuse.insert(i);
}
for(int i = 0; i <= n; i++){
if(nxt[i] != 0){
unuse.erase(nxt[i]);
}
}
cout << ans << "\n";
int p = 0;
for(int i = 0; i < n; i++){
if(nxt[p] == 0){
p = *unuse.begin();
cout << p << " ";
unuse.erase(unuse.begin());
}else{
cout << nxt[p] << " ";
p = nxt[p];
}
}
cout << "\n";
}
signed main() {
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
int T = 1;
cin >> T;
while(T--) {
solve();
}
}
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 3 2 1 4 5 2 1
result:
ok ok 2 cases (2 test cases)
Test #2:
score: -100
Wrong Answer
time: 119ms
memory: 3868kb
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 1 4 2 14 3 5 8 7 9 10 12 11 13 19 15 16 17 6 18 194 3 1 5 6 2 4 397 4 2 3 5 6 9 7 10 13 14 8 15 12 16 11 1 733 7 8 1 2 6 3 9 16 10 11 12 13 4 14 15 17 18 19 5 244 7 9 1 3 11 2 4 5 6 8 10 12 13 14 15 422 18 12 3 16 8 20 1 4 5 2 6 7 9 14 10 11 15 13 17 19 104 1 2 3 4 187 7 5 2 3 6 9 4 1 8 1...
result:
wrong answer Participant declares the cost to be 524, but the plan actually costs 555 (test case 1)