An integer n (0 ≤ n ≤ 1000), representing some quantity or size. If n is 0, it signifies the end of input and should not be processed.
Two integers vw and vc (1 ≤ vw, vc ≤ 10), representing some speeds.
A list of n tuples, where each tuple consists of two integers (xi, yi) (-10000 ≤ xi, yi ≤ 10000), representing some coordinates. The first integer in the tuple increases with each subsequent tuple.

### Example Input:

```
3
2 1
0 0
50 50
100 0
3
1 1
0 0
50 50
100 0
3
1 2
0 0
50 50
100 0
3
2 1
0 0
100 100
150 50
6
1 2
0 0
50 50
100 0
150 0
200 50
250 0
0
```

### Function Signature:
Write a function f(inputs) that takes in the input.

```python
def f(inputs: List[Tuple[int, int, int, List[Tuple[int, int]]]]):
    '''
    inputs: a list of tuples, where each tuple consists of:
        n: an integer
        vw: an integer
        vc: an integer
        coordinates: a list of tuples, each consisting of two integers
    '''
```