码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #687 (Div. 2, based on Technocup 2021 Elimination Round 2) A-E

时间:2020-12-04 11:49:25      阅读:22      评论:0      收藏:0      [点我收藏+]

标签:while   pac   class   its   clu   main   ref   span   href   

 

题目来源

https://codeforces.ml/contest/1457

A:Prison Break

  给一个n*m的矩阵,问这个矩阵上到(a, b)距离最远的距离是多少?

思路分析

   找四个角即可。

  

#include <bits/stdc++.h>

using namespace std;

int main(){
    int t; scanf("%d", &t);
    while(t --){
        int ans = 0;
        int n, m, r, c;
        scanf("%d%d%d%d", &n, &m, &r, &c);
        ans = max(n - r, r - 1) + max(m - c, c - 1);
        printf("%d\n", ans);
    }
    return 0;
}

 

 

 

 

 

Codeforces Round #687 (Div. 2, based on Technocup 2021 Elimination Round 2) A-E

标签:while   pac   class   its   clu   main   ref   span   href   

原文地址:https://www.cnblogs.com/MrIsland/p/14063775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!