摘要: 题目大意: 给你n个数,有些数是未知的,要求给未知数的赋值,使得相邻两个数的最大绝对值最小。 思路: 本题可以三分。 1 #include<bits/stdc++.h> 2 using namespace std; 3 int const N=2e5+10; 4 int a[N],n,t; 5 in 阅读全文
posted @ 2020-03-14 15:55 zjxxcn 阅读(221) 评论(0) 推荐(0) 编辑