题目 https://www.luogu.com.cn/problem/P2015 #include<bits/stdc++.h> using namespace std; #define ll long long int const N=1e2+7; int const M=1e2+7; int n,m; struct node{ int a,next,len; }e[M<<1]; int cnt,he...