用n个优先队列。复杂度, 大概就这样吧。 #include <bits/stdc++.h> using namespace std; int main(){ int n,m; int temp,temp2; cin>>n>>m; priority_queue<int>v[n]; for(int i=0;i<n;i++){ cin>>temp; for(int j=0;j<temp;j++){ cin>>temp2;...