#include <iostream>
#include <cstdio>
#include <math.h>
using namespace std;
int main()
{
int n,k,a,b,c,d,wmax=0,wmin=100,hmax=0,hmin=100,z1=0,z2=0,z3=0,z4=0;
cin >> n;
for(int i=0;i<n;i++)
{
cin >> k;
wmax=0;
wmin=100;
hmax=0;
hmin=100;
for(int j=0;j<k;j++)
{
cin >> a >> b >> c >> d;
if(a<wmin)
{
wmin=a;
z1=j;
}
if(b>wmax)
{
wmax=b;
z2=j;
}
if(c<hmin)
{
hmin=c;
z3=j;
}
if(d>hmax)
{
hmax=d;
z4=j;
}
}
if(z1==z2&&z2==z3&&z3==z4)
{
cout << "TAK" << endl;
}
else
{
cout << "NIE" << endl;
}
}
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | #include <iostream> #include <cstdio> #include <math.h> using namespace std; int main() { int n,k,a,b,c,d,wmax=0,wmin=100,hmax=0,hmin=100,z1=0,z2=0,z3=0,z4=0; cin >> n; for(int i=0;i<n;i++) { cin >> k; wmax=0; wmin=100; hmax=0; hmin=100; for(int j=0;j<k;j++) { cin >> a >> b >> c >> d; if(a<wmin) { wmin=a; z1=j; } if(b>wmax) { wmax=b; z2=j; } if(c<hmin) { hmin=c; z3=j; } if(d>hmax) { hmax=d; z4=j; } } if(z1==z2&&z2==z3&&z3==z4) { cout << "TAK" << endl; } else { cout << "NIE" << endl; } } return 0; } |
English