#include <iostream> #include <vector> using namespace std; void Ciuchcia() { int x, wiersz=1, i=1, miejsce1, miejsce2, miejsce3, odp=3000, liczba, k, h, j, n; cin >> x >> k; while(wiersz<=x) { h=0; miejsce1=0; miejsce2=0; miejsce3=0; while(i<=wiersz) { cin >> liczba; if(wiersz==1) { odp=liczba; //cout << "od: " << odp << endl << k << endl; } if(liczba<odp) { j=1; while(j<wiersz && miejsce3<=k) { //cout << "a"; miejsce3=miejsce3+j; j++; } if(miejsce3<=k && k!=1) { //cout << "od: " << odp << endl << k << endl; odp=liczba; h=1; } j=0; n=x; while(i-1>j && miejsce1<=k && h==0) { miejsce1=miejsce1+n; n--; j++; } miejsce1=miejsce1+wiersz; if(miejsce1<=k && h==0) { odp=liczba; h=1; } j=wiersz; n=x; while(i<j && miejsce2<=k && h==0) { miejsce2=miejsce2+n; n--; j--; } if(miejsce2<=k && h==0) odp=liczba; } i++; } i=1; wiersz++; } cout << odp << endl; } int main() { Ciuchcia(); }
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | #include <iostream> #include <vector> using namespace std; void Ciuchcia() { int x, wiersz=1, i=1, miejsce1, miejsce2, miejsce3, odp=3000, liczba, k, h, j, n; cin >> x >> k; while(wiersz<=x) { h=0; miejsce1=0; miejsce2=0; miejsce3=0; while(i<=wiersz) { cin >> liczba; if(wiersz==1) { odp=liczba; //cout << "od: " << odp << endl << k << endl; } if(liczba<odp) { j=1; while(j<wiersz && miejsce3<=k) { //cout << "a"; miejsce3=miejsce3+j; j++; } if(miejsce3<=k && k!=1) { //cout << "od: " << odp << endl << k << endl; odp=liczba; h=1; } j=0; n=x; while(i-1>j && miejsce1<=k && h==0) { miejsce1=miejsce1+n; n--; j++; } miejsce1=miejsce1+wiersz; if(miejsce1<=k && h==0) { odp=liczba; h=1; } j=wiersz; n=x; while(i<j && miejsce2<=k && h==0) { miejsce2=miejsce2+n; n--; j--; } if(miejsce2<=k && h==0) odp=liczba; } i++; } i=1; wiersz++; } cout << odp << endl; } int main() { Ciuchcia(); } |