Pabon_SEC

Expert Enough

May 13th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.09 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. struct data
  6. {
  7.     char maker[23];
  8.  
  9.     int low,high;
  10.  
  11. } database[10005];
  12.  
  13. int main()
  14. {
  15.     int test,koyta,khojo,i,j,query;
  16.  
  17.     char store[23];
  18.  
  19.     scanf("%d",&test);
  20.  
  21.     while(test--)
  22.     {
  23.         scanf("%d",&koyta);
  24.  
  25.         for(i=1; i<=koyta; i++)
  26.         {
  27.             scanf("%s%d%d",database[i].maker,&database[i].low,&database[i].high);
  28.         }
  29.  
  30.         scanf("%d",&query);
  31.  
  32.         while(query--)
  33.         {
  34.             scanf("%d",&khojo);
  35.  
  36.             int cnt = 0;
  37.  
  38.             for(i=1; i<=koyta; i++)
  39.             {
  40.                 if(khojo>=database[i].low && khojo<=database[i].high)
  41.                 {
  42.                     cnt++;
  43.  
  44.                     strcpy(store,database[i].maker);
  45.                 }
  46.             }
  47.  
  48.             if(cnt==1)
  49.             {
  50.                 printf("%s\n",store);
  51.             }
  52.             else
  53.             {
  54.                 printf("UNDETERMINED\n");
  55.             }
  56.  
  57.         }
  58.  
  59.         if(test>0)
  60.         {
  61.             puts("");
  62.         }
  63.     }
  64.  
  65.     return 0;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment