First of all, your sieve snippet has a typo in it:
// sieve[0..N] initialized to all 0s, evidently
for (int i=2; i<=N; i++){
if (sieve[i]==0){
cout << i << " is prime" << endl;
for (int j = i; j<=N; j+=i){
sieve[j] += 1; // must be '+=' , not just '=' ---- NB!!
}
}
cout << i << " has " << sieve[i] << " distinct prime factors\n";
}
Normally, when sieving to find primes only, the inner loop would be starting from a prime's square, for (int j = i*i; j<=N; j+=i) { ... }, to mark off all the non-trivial multiples of that prime. And herein lies the catch: this obviously skips 6 when marking multiples of 3; skips 10,15,20 for 5; etc. This means that for your sieve here it's wrong to start from the square. But that is the basis for the segmented sieve scheme. Which means the sieve must be contiguous, and sqrt-based segmented sieve is inapplicable for your purposes here, of collecting the numbers of distinct prime factors of each number in a range.
You have to generate contiguous sieve "core" up to at least N/2, not sqrt(N), and for N=10^18 it probably won't make much of a difference.
edit: Or you can store your primes in a file, and proceed with the counting sieve by segments. The primes supply should be separate from the sieve anyway, and have its own extention mechanism (probably a standard segmented sieve, itself). To calculate omegas around N, the primes on file would have to reach N/2, automatically extending as you go.
Concerning the "tangled code of terse articles", consider this Haskell code (using a short variable name p to indicate a prime):
primes = 2 : 3 : ([5,7..] `minus` unionAll [[p*p, p*p+2*p..] | p <- tail primes])
unionAll here must smash together the ordered streams of multiples of primes, to produce a joined ordered sequence of composites, without duplicates. It can be implemented as a priority queue, or through a tree of comparisons, or with an array which will serve as a sorting and duplicates-removing device, by placing the segments of each stream that fit, onto an array, one after another. minus implements an ordered set difference operation.
The work is naturally divided into segments between the successive primes' squares.