#include <iostream> using namespace std; #define width 4 int main() { int temp_w1=0, temp_w2=0, temp_h1=0, temp_h2=0; int temp_w1b=0, temp_w2b=0, temp_h1b=0, temp_h2b=0; int height; int w1, w2, h1, h2; int t; int n; cin>>t; char wyniki[t]; for(short int i=0;i<t;i++) { cin>>n; //tab int **tab = new int*[width]; for (int x = 0; x < width; x++) { tab[x] = new int[n]; } for(short int j=0;j<n;j++) { cin>>w1; tab[j][0]=w1; cin>>w2; tab[j][1]=w2; cin>>h1; tab[j][2]=h1; cin>>h2; tab[j][3]=h2; } for(int j=0;j<n;j++) { if((j+1) < n) { if(tab[j][0]<=tab[j+1][0] && (j+1) < n) { temp_w1=j; if(tab[j][0]==tab[j+1][0]) { temp_w1b=(j+1); } } else { temp_w1=(j+1); } if(tab[j][1]>=tab[j+1][1] && (j+1) < n) { temp_w2=j; if(tab[j][1]==tab[j+1][1]) { temp_w2b=(j+1); } } else temp_w2=(j+1); if(tab[j][2]<=tab[j+1][2] && (j+1) < n) { temp_h1=j; if(tab[j][2]==tab[j+1][2]) { temp_h1b=(j+1); } } else temp_h1=(j+1); if(tab[j][3]>=tab[j+1][3] && (j+1) < n) { temp_h2=j; if(tab[j][3]==tab[j+1][3]) { temp_h2b=(j+1); } } else temp_h2=(j+1); } } wyniki[i]='n'; if((temp_w1==temp_w2 && temp_w2==temp_h1 && temp_h1==temp_h2) || (temp_w1==temp_w2b && temp_w2b==temp_h1 && temp_h1==temp_h2b) || (temp_w1b==temp_w2 && temp_w2==temp_h1b && temp_h1b==temp_h2)) { wyniki[i]='t'; } else { wyniki[i]='n'; } } for(int x=0;x<t;x++) { if(wyniki[x]=='t') { 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | #include <iostream> using namespace std; #define width 4 int main() { int temp_w1=0, temp_w2=0, temp_h1=0, temp_h2=0; int temp_w1b=0, temp_w2b=0, temp_h1b=0, temp_h2b=0; int height; int w1, w2, h1, h2; int t; int n; cin>>t; char wyniki[t]; for(short int i=0;i<t;i++) { cin>>n; //tab int **tab = new int*[width]; for (int x = 0; x < width; x++) { tab[x] = new int[n]; } for(short int j=0;j<n;j++) { cin>>w1; tab[j][0]=w1; cin>>w2; tab[j][1]=w2; cin>>h1; tab[j][2]=h1; cin>>h2; tab[j][3]=h2; } for(int j=0;j<n;j++) { if((j+1) < n) { if(tab[j][0]<=tab[j+1][0] && (j+1) < n) { temp_w1=j; if(tab[j][0]==tab[j+1][0]) { temp_w1b=(j+1); } } else { temp_w1=(j+1); } if(tab[j][1]>=tab[j+1][1] && (j+1) < n) { temp_w2=j; if(tab[j][1]==tab[j+1][1]) { temp_w2b=(j+1); } } else temp_w2=(j+1); if(tab[j][2]<=tab[j+1][2] && (j+1) < n) { temp_h1=j; if(tab[j][2]==tab[j+1][2]) { temp_h1b=(j+1); } } else temp_h1=(j+1); if(tab[j][3]>=tab[j+1][3] && (j+1) < n) { temp_h2=j; if(tab[j][3]==tab[j+1][3]) { temp_h2b=(j+1); } } else temp_h2=(j+1); } } wyniki[i]='n'; if((temp_w1==temp_w2 && temp_w2==temp_h1 && temp_h1==temp_h2) || (temp_w1==temp_w2b && temp_w2b==temp_h1 && temp_h1==temp_h2b) || (temp_w1b==temp_w2 && temp_w2==temp_h1b && temp_h1b==temp_h2)) { wyniki[i]='t'; } else { wyniki[i]='n'; } } for(int x=0;x<t;x++) { if(wyniki[x]=='t') { cout<<"TAK"<<endl; } else cout<<"NIE"<<endl; } return 0; } |