伸头缩尾法
为何我考场上就是想不出来。。。过了几天一下就想出来了。。。
#include
#include
#include
#include
using namespace std;
int n,t,w,x,y,tot,ans,have;
struct ty
{
int v,id;
}h[1000005];
int now[100005],c[100005];
bool cmp(ty x,ty y)
{
return x.vint main()
{
cin>>n;
for(int i=1;i<=n;i++)
{
scanf("%d%d",&x,&c[i]);
for(int j=1;j<=x;j++)
{
scanf("%d",&y);
tot++;
h[tot].v=y;
h[tot].id=i;
}
}
sort(h+1,h+tot+1,cmp);
t=1;w=0;
ans=1e9;
for(int i=1;i<=tot;i++)
{
w=i;
int team=h[i].id;
now[team]++;
if(now[team]==c[team]) have++;
while(have==n)
{
ans=min(ans,h[w].v-h[t].v);
team=h[t].id;
now[team]--;
if(now[team]cout<return 0;
}