Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
46525 | yuzhengxun | 黑白精灵 | C++ | 通过 | 0 MS | 244 KB | 223 | 2024-05-04 11:10:01 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m,n1,m1,n2,m2,s1=0,s2=0; cin>>n>>m; cin>>n1>>m1>>n2>>m2; s1=(n1+m1-1)+(n-n2+m-m2); s2=(n2-1+m2-1)+(n-n1+m-m1); cout<<min(s1,s2); return 0; }