QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#776286#9730. Elevator IIzqxWA 48ms3600kbC++201.5kb2024-11-23 18:05:512024-11-23 18:05:51

Judging History

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

  • [2024-11-23 18:05:51]
  • 评测
  • 测评结果:WA
  • 用时:48ms
  • 内存:3600kb
  • [2024-11-23 18:05:51]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ull unsigned long long
#define endl "\n"

using namespace std;
bool cmd(pair<pair<int, int>,int>a, pair<pair<int, int>,int>b)
{
	return a.first.first < b.first.first;
}
int in[100005];
void solve()
{
	int n, f;
	cin >> n >> f;
	for (int i = 0; i <= n; i++)in[i] = 0;
	vector<pair<pair<int, int>, int>>ve, anw;
	for (int i = 1; i <= n; i++)
	{
		int l, r;
		cin >> l >> r;
		ve.push_back({{ l,r },i});
	}
	sort(ve.begin(), ve.end(),cmd);
	int flp=0;
	int sum = 0;
	int now = f;
	int tp = 0;
	while (true)
	{
		for (int i = tp; i < n; i++)
		{
			if (now < ve[i].first.first)
			{
				anw.push_back(ve[i]);
				in[i] = 1;
				tp = i;
				break;
			}
			if (now < ve[i].first.second)
			{
				anw.push_back(ve[i]);
				in[i] = 1;
				now = ve[i].first.second;
			}
			if (i == n-1)
			{
				tp = n;
			}
		}
		if (tp == n)break;
		now = ve[tp].first.second;
		tp++;
	}
	now = f;
	for (int i = 0; i < ve.size(); i++)
	{
		if (in[i] == 0)anw.push_back(ve[i]);
	}
	for (int i = 0; i < ve.size(); i++)
	{
		sum += max(0ll, anw[i].first.first- now);
		sum += anw[i].first.second - anw[i].first.first;
		now = anw[i].first.second;
	}
	cout << sum << endl;
	for (auto a : anw)
	{
		cout << a.second <<" ";
	}
	cout << endl;
}
signed main(void)
{
	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
	int t;
	cin >> t;
	while (t--)
	{
		solve();
	}
	return 0;
}

详细

Test #1:

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

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: 48ms
memory: 3576kb

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:

559
2 10 16 8 7 15 12 5 3 13 9 17 1 19 18 6 11 14 4 
217
5 3 6 1 2 4 
428
9 10 4 11 3 2 15 16 7 6 12 14 8 5 13 1 
735
2 15 7 3 9 18 11 6 14 13 19 10 12 5 16 8 17 4 1 
262
3 10 5 6 2 7 13 9 15 1 11 14 4 12 8 
422
17 18 12 3 19 1 14 16 9 15 5 8 4 20 13 2 7 6 10 11 
148
3 4 2 1 
214
4 3 8 7 10 9 6 5 1 ...

result:

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