The function replaces uppercase "R" with "V" and uppercase "V" with "R" in the input string; other characters remain unchanged.

[CODE]:
```python
def approximate_function(input_string):
    return input_string.replace("R", "tmp").replace("V", "R").replace("tmp", "V")
```