The basic way to solve this is to realise that the first 1/9 of letter strings start with B, the next 1/9 start with C, etc. And then within a 1/9 section, the first 1/8 start with the first available letter, and so on.
The most intuitive approach is to discard all those strings that come before CYBERPUNK, counting the discarded strings as we go.
So firstly, because C is 2nd alphabetically, we discard any strings that start with B, which is 1/9 of them, or 40320 (1/9 of 9! is simply 8!). Of the remaining letters Y is 8th, so within the 1/9 that start with C, we want to discard the first 7/8 of them, or 35280 (which is 7*7!), etc.
Mathematically how this works is to express the word CYBERPUNK with numbers detailing where each letter comes alphabetically out of the letters remaining at that point. So C is second out of BCEKNPRUY. Then Y is 8th out of BEKNPRUY, B is first out of BEKNPRU, E is first out of EKNPRU, etc. This gives (2,8,1,1,4,3,3,2,1).
Because we want to discard all of the strings before CYBERPUNK, we subtract 1 from each of those numbers to get (1,7,0,0,3,2,2,1,0), and then we need to multiply each of those numbers by the appropriate factorial, and add them together: 1*8!+7*7!+0*6!+0*5!+3*4!+2*3!+2*2!+1*1!+0*0!
40320+35280+0+0+72+12+4+1+0=75689.
But remember, this is the number of strings before CYBERPUNK, so the actual CYBERPUNK number is the next one: 75690.
To answer the bonus question, we need to the same thing but in reverse. To start with we need to subtract 1 to get 99,999. We then need to express that as the sum of factorials 8! to 0! : (2*8! + 3*7! + 5*6! + 5*5! + 1*4! + 2*3! + 1*2! + 1*1! + 0*0!). Then we need to add 1 to each of these: (3,4,6,6,2,3,2,2,1). Finally, we write out the nine letters in alphabetical order: BCEKNPRUY, and the first of our word string will be the 3rd in alphabetical order: E. Then second in our string will be the 4th in alphabetical order (of those letters than haven’t been used yet), etc. The 100,000th string will therefore be ENUYCPKRB.