首先发现规律 一条信道的宽度为连续输入的两个数的和,然后再从头到尾枚举即可。 #include <cstdio> #include <iostream> using namespace std; const int N = 100010; int a[N], b[N]; int t, n; int main(void) { scanf("%d", &t); while(t -- ) { b[1] = 0x7f7f7f7f; scanf("%d", &n); for(int i = 0...