Search found 1 match

by memi
Tue Apr 09, 2013 1:01 am
Forum: Volume 101 (10100-10199)
Topic: 10107 - What is the Median?
Replies: 74
Views: 31792

10107 - What is the Median?

i get TLE ,,,any help plz :cry:
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
long long temp=0 , i=0 , Temp=0 , k=0, j, tmp=0;
vector<long long>v;
while(true)
{
cin>>temp;
i=0;
v.push_back(temp);
if(v.size()==1)
cout<<temp<<endl;
else
{
sort ...

Go to advanced search