本文主要是介绍【2024.2.5练习】独木桥,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目描述
题目思路
纯板子题,与如出一辙。
我的代码
注意士兵数可能为0。
#include <iostream>
#include <algorithm>
using namespace std;
int main() {int l;int n;cin >> l >> n;int near = -1;int far = -1;if (n != 0) {while (n--) {int t;cin >> t;int t2 = l - t + 1;near = max(min(t, t2), near);far = max(max(t, t2), far);}cout << near << " " << far << endl;}else {cout << 0 << " " << 0;}return 0;
}
这篇关于【2024.2.5练习】独木桥的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!