I don't have proof but i have gut feeling that , suppose s1 is string which needs to be converted to s2 then we can keep the largest common subsequence in s1 as it is and edit distance is number of elements we need to replace/remove/insert.
For example : s1 = "adjsjvnejnv"
s2 = "djpppne"
Here LCS is "djne" , now we need to remove 3 element string "jnv" at right side of "djne" ,we can replace "sjv" with "ppp" in s1 and and we can delete "a" from s1. so total edit distance is 3+3+1 = 7 .
Idea is to replace or delete elements inbetween the elements of LCS and add or remove elements from right and left part of LCS .
I am not able to prove it . Can someone provide counterexample or proof ?
Note that i am not talking about LCS distance (which involves deletion and insertion) , i am talking about LCS and saying can we fill / replace / remove in between the sequence and left and right side of sequence .