H,W,N=map(int,input().split()) result=H-1+W-1 from heapq import heappush,heappop L=[] for i in range(N): x,y,c,d=map(int,input().split()) L.append((x,y,c,d)) for s in range(N): dist=[10**15]*N kaku=[0]*N S=[] x,y=L[s][0],L[s][1] dist[s]=abs(x-1)+abs(y-1) heappush(S,dist[s]*10**10+s) while S: w=heappop(S) time=w//(10**10) pos=w%(10**10) if kaku[pos]==True: continue kaku[pos]=True c,d=L[pos][2],L[pos][3] for j in range(N): if kaku[j]==True: continue x,y=L[j][0],L[j][1] di=abs(x-c)+abs(y-d) if dist[j]>dist[pos]+di+1: dist[j]=dist[pos]+di heappush(S,dist[j]*10**10+j) for i in range(N): c,d=L[i][2],L[i][3] di=abs(c-H)+abs(d-W) result=min(result,dist[i]+di+1) print(result)