Pagini recente » Cod sursa (job #1592117) | Cod sursa (job #2822580) | Cod sursa (job #2760310) | Cod sursa (job #1762129) | Cod sursa (job #69445)
Cod sursa(job #69445)
#include<fstream>
using namespace std;
long a[100],T,x;
ofstream fout("loto.out");
short n;
void citire(){
ifstream fin("loto.in");
fin>>n>>T;
for (short i=0;i<n;i++)
fin>>a[i];
fin.close();
}
void bule(){
short ok=0,p=n;
while(ok==0){
ok=1;
p--;
for (short i=0;i<p;i++)
if (a[i] < a[i+1]){
long aux=a[i];
a[i]=a[i+1];
a[i+1]=aux;
ok=0;}
}
}
int caut(long x, int o){
int st=o, dr=n - 1;
while (st<=dr){
int m=(st+dr)/2;
if (a[m]==x)
return 1;
if (a[m]<x)
st=m+1;
dr=m-1;
}
return 0;
}
int parc(){
for (short i = 0; i < n; i++)
for (short j = i; j < n; j++)
for (short k=j; k < n; k++)
for (short l=k; l < n; l++)
for (short o=l; o < n; o++) {
long x = T - a[i] - a[j] - a[k] - a[l] - a[o];
for (short p= o ; p < n; p++)
if ( x == a[p]){
fout<<a[i]<<" "<<a[j]<<" "<<a[k]<<" "<<a[l]<<" "<<a[o]<<" "<<x<<"\n";
return 1;
}
}
return 0;
}
int main(){
citire();
bule();
if (!parc())
fout<<"-1";
fout.close();
return 0;
}