#include<iostream> #include<vector> #include <map> #include <algorithm> using namespace std; const int N = 2010; int a[N], b[N]; //差分数组a, 前缀和数组b int n, t, res = N; typedef pair<int, int> PII; vector<int> all;//所有端点 map<int, int> alls;//离散化端点 vector<PII>...