Submission #566963

#TimeUsernameProblemLanguageResultExecution timeMemory
566963almothana05Just Long Neckties (JOI20_ho_t1)C++14
0 / 100
1 ms212 KiB
#include<bits/stdc++.h>
#define mod 1000000007
#define inf 100000000000000000
using namespace std;
vector<int>num , cmp;
int suf[300001];
int main(){
   // ios_base::sync_with_stdio(false);
   // cin.tie(NULL);
   int menge,  numm , nummer;
   cin >> menge;
   for(int i = 0 ; i < menge + 1; i++){
      cin >> numm;
      cmp.push_back(numm);
   }
   for(int i = 0 ; i < menge ; i++){
      cin >> numm;
      num.push_back(numm);
   }
   sort(num.begin() , num.end());
   sort(cmp.begin() , cmp.end());
   for(int i = 0 ; i < menge + 1 ; i++){
      int pl = 0 , erg = 0;
      for(int j = 0 ; j < menge + 1; j++){
         if(j == i){
            continue;
         }
         erg = max(erg , max(0 , cmp[j] - num[pl]));
         pl++;
      }
      cout << erg << " ";
   }
   // for(int i = menge - 1 ; i >= 0 ; i--){
   //    // cout << cmp[i + 1] << ' ' << num[i] << "\n";
   //    suf[i] = max(suf[i + 1] , max(0 , cmp[i + 1] - num[i]));
   // }
   // return 0;
   // int pref = 0;
   // for(int i = 0 ; i < menge + 1; i++){
   //    if(i == 0){
   //        cout << max(suf[i] , pref) << " ";
   //       continue;
   //    }
   //    pref = max(pref , max(0 , cmp[i - 1] - num[i - 1]));
   //    cout << max(suf[i] , pref) << " ";
   // }
   // cout << "\n";
}

Compilation message (stderr)

ho_t1.cpp: In function 'int main()':
ho_t1.cpp:10:23: warning: unused variable 'nummer' [-Wunused-variable]
   10 |    int menge,  numm , nummer;
      |                       ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...