There are quite a lot of ways to have fun with inflatable balloons. For example, you can fill them with water and see what happens.
Grigory and Andrew have the same opinion. So, once upon a time, they went to the shop and bought nn packets with inflatable balloons, where ii-th of them has exactly aiai balloons inside.
They want to divide the balloons among themselves. In addition, there are several conditions to hold:
- Do not rip the packets (both Grigory and Andrew should get unbroken packets);
- Distribute all packets (every packet should be given to someone);
- Give both Grigory and Andrew at least one packet;
- To provide more fun, the total number of balloons in Grigory's packets should not be equal to the total number of balloons in Andrew's packets.
Help them to divide the balloons or determine that it's impossible under these conditions.
The first line of input contains a single integer nn (1≤n≤101≤n≤10) — the number of packets with balloons.
The second line contains nn integers: a1a1, a2a2, ……, anan (1≤ai≤10001≤ai≤1000) — the number of balloons inside the corresponding packet.
If it's impossible to divide the balloons satisfying the conditions above, print −1−1.
Otherwise, print an integer kk — the number of packets to give to Grigory followed by kk distinct integers from 11 to nn — the indices of those. The order of packets doesn't matter.
If there are multiple ways to divide balloons, output any of them.
3 1 2 1
2 1 2
2 5 5
-1
1 10
-1
In the first test Grigory gets 33 balloons in total while Andrey gets 11.
In the second test there's only one way to divide the packets which leads to equal numbers of balloons.
In the third test one of the boys won't get a packet at all.
题意:给出n个数列,表示有n袋气球,分给两个人,每个人至少有一袋,而且,两个人的气球总数不能一样,输出其中任意一个人所分得的气球袋数,以及这袋气球的下标。
思路:如果只有一袋气球,或者有两袋气球,并且这两袋气球的量一样的话,那么不可能按要求分气球,输出-1,否则,给任意一个人最小的那袋气球,其他全部分给另外一个人即可。
#include "iostream"
using namespace std;
int a[1005];
int main()
{
ios::sync_with_stdio(false);
int n,sum=0,Min=0xfffffff,t;
cin>>n;
for(int i=1;i<=n;i++) {cin>>a[i];sum+=a[i];if(Min>a[i]){Min=a[i],t=i;}}
if(n==1) cout<<"-1"<<endl;
else{
if(Min==(sum-Min)) cout<<"-1"<<endl;
else{
cout<<1<<endl<<t<<endl;
}
}
return 0;
}