ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1306. Sequence Median

Как уменьшить расход памяти?
Posted by Fitman 12 Jun 2017 17:48
Вот код... Я не понимаю как уменьшить расход памяти... но программа написана верно и работает...

#include<iostream>
using namespace std;
int main(){
 int n,i,j;

 float x;
 cin >> n;
 unsigned int a[250000];
 for(i=1;i<=n;i++){
                  cin>>a[i];
                  }
 bool k=true;
 for (i=1;(i<n && k==true);i++){
     k=false;
     for(j=1;j<=n-i;j++){
     if (a[j]>a[j+1]) { swap(a[j],a[j+1]);
     k=true;
     }
     }
     }
     if (n%2==0){
    cout << (a[n/2]+a[n/2+1])/2;
     }
     else {cout << a[n/2];}
}
Re: Как уменьшить расход памяти?
Posted by Mahilewets 12 Jun 2017 17:55
Не храни 250 000 unsigned int 'ов.  Храни,  например,  только половину --  125 000. Тогда,  очевидно,  расход памяти сократится в два раза.

Edited by author 12.06.2017 17:55