QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#743694#9730. Elevator IIshenchuan_fanWA 86ms3912kbC++201.6kb2024-11-13 19:49:482024-11-13 19:49:53

Judging History

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

  • [2024-11-13 19:49:53]
  • 评测
  • 测评结果:WA
  • 用时:86ms
  • 内存:3912kb
  • [2024-11-13 19:49:48]
  • 提交

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;
	}
	sort(a.begin() + 1, a.end(), [&](node a, node b){
		return a.x < b.x;
	});
	multiset <PII> R;
	R.insert({f, 0});
	vector <int> nxt(n + 1);
	for(int i = 1; i <= n; i++){
		auto [u, v, idx] = a[i];
		auto it = R.lower_bound({u + 1, 0});
		if(it == R.end()){
			PII t = *R.rbegin();
			ans += u - t.x;
			R.erase(R.find(t));
			nxt[t.y] = idx;
		}else if(it != R.begin()){
			auto it2 = prev(it);
			PII t = *it2;
			ans += u - t.x;
			R.erase(R.find(t));
			nxt[t.y] = idx;
		}
		R.insert({v, 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();
	}
}

詳細信息

Test #1:

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

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: 86ms
memory: 3912kb

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:

558
1 2 3 19 18 5 8 7 15 12 11 14 10 13 6 4 16 9 17 
244
1 2 3 6 4 5 
485
16 11 2 14 5 3 9 6 8 13 4 1 7 12 10 15 
752
18 2 14 3 5 6 7 9 16 10 11 17 12 13 4 1 15 8 19 
306
11 2 4 6 7 15 1 5 9 10 12 8 13 3 14 
458
3 16 2 1 5 7 11 6 8 20 9 14 10 15 13 17 12 18 19 4 
123
1 2 3 4 
228
3 4 5 7 2 8 10 9 6 ...

result:

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