Advertisement
fooker

Haha

Mar 25th, 2023
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.97 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.     int t;
  6.     cin>>t;
  7.     while(t--)
  8.     {
  9.  
  10.        
  11.             int n;
  12.             cin>>n;           long a[n];
  13.             cin>>a[0];
  14.             long first=a[0],second=a[0];
  15.             for(int i=1;i<n;i++)
  16.             {
  17.                 cin>>a[i];
  18.                if(a[i]==first)
  19.                second=a[i];
  20.                else if (a[i] > first)
  21.                {
  22.                   second = first;
  23.                   first = a[i];
  24.                }
  25.                 else if (a[i] > second && a[i] != first)
  26.                  second = a[i];
  27.             }
  28.            
  29.             for(int i=0;i<n;i++)
  30.             {
  31.                 if(a[i]!=first)
  32.                 {
  33.                     cout<<a[i]-first<<" ";
  34.                 }
  35.                 else
  36.                 {
  37.                     cout<<a[i]-second<<" ";
  38.                 }
  39.  
  40.             }
  41.             cout<<""<<endl;
  42.        
  43. }
  44.  return 0;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement