Codeforces Global Round 14,A. Phoenix and Gold

举报
小哈里 发表于 2022/05/10 23:57:52 2022/05/10
【摘要】 problem A. Phoenix and Gold time limit per test2 seconds memory limit per test256 megabytes inputstan...

problem

A. Phoenix and Gold
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Phoenix has collected n pieces of gold, and he wants to weigh them together so he can feel rich. The i-th piece of gold has weight wi. All weights are distinct. He will put his n pieces of gold on a weight scale, one piece at a time.

The scale has an unusual defect: if the total weight on it is exactly x, it will explode. Can he put all n gold pieces onto the scale in some order, without the scale exploding during the process? If so, help him find some possible order.

Formally, rearrange the array w so that for each i (1≤i≤n), ∑j=1iwj≠x.

Input
The input consists of multiple test cases. The first line contains an integer t (1≤t≤1000) — the number of test cases.

The first line of each test case contains two integers n and x (1≤n≤100; 1≤x≤104) — the number of gold pieces that Phoenix has and the weight to avoid, respectively.

The second line of each test case contains n space-separated integers (1≤wi≤100) — the weights of the gold pieces. It is guaranteed that the weights are pairwise distinct.

Output
For each test case, if Phoenix cannot place all n pieces without the scale exploding, print NO. Otherwise, print YES followed by the rearranged array w. If there are multiple solutions, print any.

Example
inputCopy
3
3 2
3 2 1
5 3
1 2 3 4 8
1 5
5
outputCopy
YES
3 2 1
YES
8 1 2 3 4
NO
Note
In the first test case, Phoenix puts the gold piece with weight 3 on the scale first, then the piece with weight 2, and finally the piece with weight 1. The total weight on the scale is 3, then 5, then 6. The scale does not explode because the total weight on the scale is never 2.

In the second test case, the total weight on the scale is 8, 9, 11, 14, then 18. It is never 3.

In the third test case, Phoenix must put the gold piece with weight 5 on the scale, and the scale will always explode.

solution

#include<bits/stdc++.h>
using namespace std;
int a[110];
int main(){
	int T;  cin>>T;
	while(T--){
		int n, x; cin>>n>>x;
		for(int i = 1; i <= n; i++){
			cin>>a[i];
		}
		sort(a+1,a+n+1);
		
		int sum = 0, ok = 1;
		for(int i = 1; i <= n; i++){
			if(sum+a[i]!=x)sum+=a[i];
			else{
				for(int j = i+1; j <= n; j++)
					if(a[j]!=a[i])swap(a[j],a[i]);
				sum += a[i];
			}
			if(sum==x)ok = 0;
		}
		if(ok==1){
			cout<<"YES\n";
			for(int i = 1; i <= n; i++)
				cout<<a[i]<<" ";
			cout<<"\n";
			continue;
		}
		cout<<"NO\n";
		
	}
	return 0;
}


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。

原文链接:gwj1314.blog.csdn.net/article/details/117389560

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。