Problem Statement

Pattern:


Solution

public int catchThieves(char[] arr, int n, int k) {
	int t = 0, p = 0, caught = 0;
	// set p and t
	while (p < n && arr[p] != 'P') p++;
	while (t < n && arr[t] != 'T') t++;
	
	while (t < n && p < n) {
		// out of range
		if (Math.abs(t - p) > k) {
			if (t > p) do p++; while (p < n && arr[p] != 'P');
			else do t++; while (t < n && arr[t] != 'T');
		}
		
		// in range
		else {
			caught++;
			do p++; while (p < n && arr[p] != 'P');
			do t++; while (t < n && arr[t] != 'T');
		}
	}
	return caught;
}

Notes

something about something lik