Pabon_SEC

Sales

May 17th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int amounts[1003];
  6.  
  7. int main()
  8. {
  9.     int test,i,j,n,sum,cnt;
  10.  
  11.     scanf("%d",&test);
  12.  
  13.     while(test--)
  14.     {
  15.         scanf("%d",&n);
  16.  
  17.         for(i=1; i<=n; i++)
  18.         {
  19.             scanf("%d",&amounts[i]);
  20.         }
  21.  
  22.         sum = 0;
  23.  
  24.         for(i=2; i<=n; i++)
  25.         {
  26.             cnt = 0;
  27.  
  28.             for(j=i-1; j>=1; j--)
  29.             {
  30.                 if(amounts[i]>=amounts[j])
  31.                 {
  32.                     cnt++;
  33.                 }
  34.             }
  35.  
  36.             sum+=cnt;
  37.         }
  38.  
  39.         printf("%d\n",sum);
  40.  
  41.     }
  42.  
  43.     return 0;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment