That's not the generally accepted behaviour around tombstoning. The expectation is that the app should return exactly as it was when the user left. Remember that tombstoning may be a result of something other than a user initiated action within the app. For instance, as a user, I wouldn't want an app to forget all the information I've entered and return to a previous screen just because I answered a phone call.
If you really wanted to do this, how it could be done would depend on the structure of your application and the navigation hierarchy.
Your best bet would probably be to build your own navigation system.
If you wanted to use the built in back stack. Your Application_Activated event could set a global flag that all pages will pick up in their OnNavigatedTo event and then respond to by navigating backwards. This backwards navigation would likely be visible (if only briefly) to the user and create a less than desirable experience.