Pagini recente » Cod sursa (job #849246) | Cod sursa (job #782280) | Cod sursa (job #1537741) | Cod sursa (job #716376) | Cod sursa (job #2110647)
#include<fstream>
using namespace std;
ifstream f("scmax.in");
ofstream g("scmax.out");
const int inf = 2147483647;
const int Nmax = 100005;
int v[Nmax], poz[Nmax], t[Nmax], n, lung_max;
void citire(){
f >> n;
for(int i = 1; i <= n; i++)
f >> v[i];
}
void cautare(int x){
lung_max++;
poz[lung_max] = inf;
int p, q, m;
p = 1;
q = lung_max;
while(p != q){
m = (p + q) / 2;
if(x > poz[m])
p = m + 1;
else
q = m;
}
poz[p] = x;
if(poz[lung_max] == inf)
lung_max--;
}
void rezolvare(){
lung_max++;
poz[1] = v[1];
t[1] = 1;
for(int i = 2; i <= n; i++)
cautare(v[i]);
}
int main(){
citire();
rezolvare();
g << lung_max << '\n';
for(int i = 1; i <= lung_max; i++)
g << poz[i] << ' ';
return 0;
}