Given n, I want to find I such that phi(i) = n. n <= 100,000,000.
Maximum value of i = 202918035 for n = 99683840. I want to solve this problem
My approach is to pre-compute totient function of all numbers upto maximum i.
For that I am first finding all prime numbers up to maximum i using sieve of erathronese. Totient of prime numbers is recorded at the time of sieve.
Then using

Then I search for input number in phi array and print result to output.
But it is giving time limit exceeded.
What can be further optimized in pre-computation or there is some better way to do this?
My code is:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
int* Prime = (int*)malloc(sizeof(int) * (202918036 >> 5 + 1));
int* pos = (int*)malloc(sizeof(int) * (11231540));
int* phi = (int*)malloc(sizeof(int) * 202918036);
#define prime(i) ((Prime[i >> 5]) & (1 << (i & (31))))
#define set(j) (Prime[j >> 5] |= (1 << (j & (31))))
#define LIM 202918035
#define SLIM 14245
int sieve() {
int i, j, m, n, t, x, k, l, h;
set(1);
phi[0] = 0;
phi[1] = 0;
pos[1] = 2;
phi[2] = 1;
pos[2] = 3;
phi[3] = 2;
for (k = 2, l = 3, i = 5; i <= SLIM; k++, i = 3 * k - (k & 1) - 1)
if (prime(k) == 0) {
pos[l++] = i;
phi[i] = i - 1;
for (j = i * i, h = ((j + 2) / 3); j <= LIM; h += (k & 1) ? (h & 1 ? ((k << 2) - 3) : ((k << 1) - 1)) : (h & 1 ? ((k << 1) - 1) : ((k << 2) - 1)), j = 3 * h - (h & 1) - 1)
set(h);
}
i = 3 * k - (k & 1) - 1;
for (; i <= LIM; k++, i = 3 * k - (k & 1) - 1)
if (prime(k) == 0) {
pos[l++] = i;
phi[i] = i - 1;
}
return l;
}
int ETF() {
int i;
for (i = 4; i < LIM; i++) {
if (phi[i] == 0) {
for (int j = 1; j < i; j++) {
if (i % pos[j] == 0) {
int x = pos[j];
int y = i / x;
if (y % x == 0) {
phi[i] = x * phi[y];
} else {
phi[i] = phi[x] * phi[y];
}
break;
}
}
}
}
}
int search(int value) {
for (int z = 1; z < LIM; z++) {
if (phi[z] == value) return z;
}
return -1;
}
int main() {
int m = sieve();
int t;
ETF();
scanf("\n%d", &t);
while (t--) {
int n;
scanf("%d", &n);
if (n % 2 == 1) {
printf("-1\n");
} else {
int i;
i = search(n);
if (i == -1) printf("-1\n");
else printf("%d\n", i);
}
}
return 0;
}


n * log(n) * log(log(n)– Andreas Grapentin Jan 26 at 20:08nis desired, that resolves the ambiguity. – Daniel Fischer Jan 26 at 20:09