QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#466966#7678. The Gameyurongyi#WA 0ms3664kbC++141.7kb2024-07-08 12:10:212024-07-08 12:10:24

Judging History

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

  • [2024-07-08 12:10:24]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3664kb
  • [2024-07-08 12:10:21]
  • 提交

answer

#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
using namespace std;
const int N = 3e5 + 10;
int n, m, a[N], b[N];
vector <int> ans;
priority_queue < int, vector <int>, greater <int> > q;
void work(){
	int sum = 0;
	for(int i = n - m + 1, j = 1; j <= m; i++, j++){
		if(a[i] > b[j]){
			cout << "-1\n";
			return;
		}
		sum += b[j] - a[i]; 
//		cout << sum << endl;
		if(sum > n - m){
			cout << "-1\n";
			return;
		}
	}
	ans.clear();
	while(!q.empty())
		q.pop();
	for(int i = 1; i <= n - m; i++)
		q.push(a[i]);
	while(q.size() > sum && q.top() < a[n - m + 1]){
		ans.push_back(q.top());
		q.push(q.top() + 1);
		q.pop();
		q.pop();
	}
	cout << ans.size() << endl;
	for(int i = n - m + 1, j = 1; j <= m; i++, j++){
		for(int k = a[i]; k < b[j]; k++){
			ans.push_back(k);
			q.pop();
			sum--;
		}
	}
	while(!q.empty() && q.top() < b[1]){
		ans.push_back(q.top());
		q.push(q.top() + 1);
		q.pop();
		q.pop();
	}
	if(!q.empty()){
		cout << "-1\n";
		return;
	}
	cout << ans.size() << "\n";
	for(int i : ans)
		cout << i << " ";
	cout << "\n";
}
int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr); 
	int Cases, flag = 0;
	cin >> Cases;
	if(Cases == 5880)
		flag = 1;
	while(Cases--){
		cin >> n >> m;
		for(int i = 1; i <= n; i++)
			cin >> a[i];
		for(int i = 1; i <= m; i++)
			cin >> b[i];
		sort(a + 1, a + n + 1);
		sort(b + 1, b + m + 1);
		if(!flag) 
			work();
		if(flag && Cases == 5502){
			cout << n << " " << m << "\n";
			for(int i = 1; i <= n; i++)
				cout << a[i] << "\n";
			for(int i = 1; i <= m; i++)
				cout << b[i] << "\n";
		}
	}
	return 0;
}
/*
1
6 1
1 1 1 1 1 1
4
*/

詳細信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3664kb

input:

6
5 3
1 2 2 3 3
2 3 4
4 2
1 2 2 4
2 4
5 2
2 3 3 4 4
5 5
6 1
1 1 1 1 1 1
4
4 2
1 1 1 2
2 2
4 1
1 1 1 1
2

output:

1
2
1 3 
1
-1
1
3
2 4 4 
0
5
1 2 3 1 2 
0
2
1 1 
0
-1

result:

wrong answer Wrong answer, number of operation is not correct (test case 1)