[USACO13NOV]空荡荡的摊位Empty Stalls

题目描述

Farmer John's new barn consists of a huge circle of N stalls (2 <= N <= 3,000,000), numbered 0..N-1, with stall N-1 being adjacent to stall 0.

At the end of each day, FJ's cows arrive back at the barn one by one, each with a preferred stall they would like to occupy. However, if a cow's preferred stall is already occupied by another cow, she scans forward sequentially from this stall until she finds the first unoccupied stall, which she then claims. If she scans past stall N-1, she continues scanning from stall 0.

Given the preferred stall of each cow, please determine the smallest index of a stall that remains unoccupied after all the cows have returned to the barn. Notice that the answer to this question does not depend on the order in which the cows return to the barn.

In order to avoid issues with reading huge amounts of input, the input to this problem is specified in a concise format using K lines (1 <= K <= 10,000) each of the form:

X Y A B

One of these lines specifies the preferred stall for XY total cows: X cows prefer each of the stalls f(1) .. f(Y), where f(i) = (Ai + B) mod N. The values of A and B lie in the range 0...1,000,000,000.

Do not forget the standard memory limit of 64MB for all problems.

约翰的谷仓中有N(2 <= N <=3,000,000)个房间,编号0到N-1,这些房间排布成环状,编号0的和编号N-1的相邻。

每天傍晚,奶牛们一只一只排队回到谷仓,每头奶牛都有一个喜欢的房间,但是,如果它喜欢的房间已被其他奶牛占了,它会向前挨个探索其他房间(如果它探索过了N-1号房间,它会继续探索0号房间,以此继续下去)直到探到第一个没有被占用的房间,这时它会宣布占用这个房间。

告诉你每头奶牛喜欢的房间,当所有奶牛都找到房间后,剩下的没被占用的房间中,编号最小的是哪个。很明显,问题的答案与奶牛进入谷仓的顺序无关。

为避免输入内容过多。本题的输入数据采用一种简洁的方式:一共K(1 <= K <=10,000)行,每行格式如下:

X Y A B

表示有Y批奶牛,每批X头,也就是总共X*Y只奶牛喜欢的房间号。Y批奶牛编号1到Y,第i批X头奶牛喜欢的房间号为(A*i+B) Mod N.

A和B的取值范围为0...1,000,000,000

注意,只有64M的空间。

输入输出格式

输入格式:
  • Line 1: Two space-separated integers: N and K.

  • Lines 2..1+K: Each line contains integers X Y A B, interpreted as above. The total number of cows specified by all these lines will be at most N-1. Cows can be added to the same stall by several of these lines.
输出格式:
  • Line 1: The minimum index of an unoccupied stall.

输入输出样例

输入样例#1: 复制
10 3 
3 2 2 4 
2 1 0 1 
1 1 1 7 
输出样例#1: 复制
5 

说明

There are 10 stalls in the barn, numbered 0..9. The second line of input states that 3 cows prefer stall (2*1+4) mod 10 = 6, and 3 cows prefer stall (2*2+4) mod 10 = 8. The third line states that 2 cows prefer stall (0*1+1) mod 10 = 1. Line four specifies that 1 cow prefers stall (1*1+7) mod 10 = 8 (so a total of 4 cows prefer this stall).

All stalls will end up occupied except stall 5.

思路

f[i]指向向最近的一个空位;

一个类似并查集的find_father()维护;

代码

 1 #include<cstdio>
 2 #include<cstring>
 3 const int maxn=3e6+10;
 4 int n,k;
 5 int x,y,a,b,c,d;
 6 int f[maxn];
 7 int ff(int k){return f[k]==f[n]?k:f[k]=ff(f[k]);}
 8 int main(){
 9     freopen("empty.in","r",stdin);
10     freopen("empty.out","w",stdout);
11     scanf("%d%d",&n,&k);
12     memset(f,0x7f,sizeof(f));
13     for(int i=1;i<=k;i++){
14         scanf("%d%d%d%d",&x,&y,&a,&b);
15         for(int i=1;i<=y;i++){
16             c=(1ll*a*i+b)%n;
17             for(int j=0;j<x;j++){
18                 d=ff((c+j)%n);
19                 f[d]=ff((d+1)%n);
20             }
21         }
22     }
23     printf("%d",ff(0));
24     return 0;
25 }

 

posted @ 2017-11-07 21:14  J_william  阅读(412)  评论(0编辑  收藏  举报