/in/foo.cc: In function 'int main()':
/in/foo.cc:30:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int l=2;l<=i;l++)//从左往右推 从左往右走的情况更新
^~~
/in/foo.cc:32:13: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
f[i][1]=min(f[i][1],f[i][i]+a[i][1]);
^
/in/foo.cc:34:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int k=i-1;k>0;k--)//再推一遍从右往左推 从右往左走的情况更新
^~~
/in/foo.cc:36:13: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
f[i][i]=min(f[i][i],f[i][1]+a[i][i]);
^