CodeForces - 1515A Phoenix and Gold
Posted 海岛Blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces - 1515A Phoenix and Gold相关的知识,希望对你有一定的参考价值。
A. Phoenix and Gold
time limit per test: 2 seconds
memory limit per test: 256 megabytes
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 = 1 i w j ≠ x \\sum_{j=1}^iw_j≠x ∑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
input
3
3 2
3 2 1
5 3
1 2 3 4 8
1 5
5
output
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.
问题链接:CodeForces - 1515A Phoenix and Gold
问题简述:(略)
问题分析:(略)
AC的C++语言程序如下:
/* CodeForces - 1515A Phoenix and Gold */
#include <bits/stdc++.h>
using namespace std;
const int N = 100;
int a[N], v[N], vcnt;
int main()
{
int t, n, x;
scanf("%d", &t);
while (t--) {
scanf("%d%d", &n, &x);
for (int i = 0; i < n; i++) scanf("%d", &a[i]);
sort(a, a + n);
vcnt = 0;
int sum = 0, flag = 0;
for (int i = 0; i < n; i++) {
if (sum + a[i] != x) {
sum += a[i];
v[vcnt++] = a[i];
} else if (sum + a[i] == x && i < n - 1 && sum + a[n - 1] > x) {
sum += a[n - 1];
v[vcnt++] = a[n - 1];
n --, i--;
} else
flag = 1;
}
if (flag) puts("NO");
else {
puts("YES");
for (int i = 0; i < vcnt; i++)
printf("%d ", v[i]);
printf("\\n");
}
}
return 0;
}
以上是关于CodeForces - 1515A Phoenix and Gold的主要内容,如果未能解决你的问题,请参考以下文章