for tc in range(1,int(input())+1):
N,M,L = map(int,input().split())
arr=list(map(int,input().split()))
for _ in range(M):
inp = list(input().split())
if inp[0]=='D':
arr.pop(int(inp[1]))
elif inp[0]=='I':
arr.insert(int(inp[1]), int(inp[2]))
elif inp[0]=='C':
arr[int(inp[1])]=int(inp[2])
if not arr:
break
if len(arr)-1 <L:
res=-1
else:
res=arr[L]
print(f'#{tc} {res}')