COCI2012-2013#6 BAKTERIJE题解

Link

题目分析

这个题在 Luogu 居然评了黑,也是比较离谱的。

首先这是一道大模拟。考察每一个细菌的行为,可以发现其状态可以用三元组 (x,y,d),1xn,1ym,0d<4 表示。其中 (x,y) 为位置, d 为方向。

显而易见的,细菌的行动最终一定陷入循环,所以我们可以通过模拟求出细菌循环节的长度以及他进入循环之前需要走的步数。

考虑用记录到达位置 (x,y,d) 所需的步数。在模拟的过程中,如果发现重复进入同一个位置说明产生了循环,循环节长度为当前步数 - 第一次步数,记为 stp ,进入循环节之前的步数记为 st

由于题目要求所有细菌进入陷阱,所以我们还要统计每一个细菌进入陷阱的时刻。用 pasi 表示细菌第一次以方向 i 进入陷阱的时刻。可以发现,如果 pasi<st ,则细菌只可能在进入循环节之前以方向 i 进入陷阱,在循环节中绝对不会(如果也进了说明 st 可以提前到 pasi )。同理,在循环节中经过的也不会在循环节之前经过。所以用一个数组就可以记录,互不干扰。

大致代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
void calc(int id) {
memset(book, 0, sizeof book);
book[a[id].x][a[id].y][a[id].d] = 1;
while (true) {
if (a[id].x == xx && a[id].y == yy) a[id].pas[a[id].d] = book[a[id].x][a[id].y][a[id].d];
int td = ((a[id].d + a[id].mp[a[id].x][a[id].y]) & 3),
tx = a[id].x + ch_d[td][0],
ty = a[id].y + ch_d[td][1];
if (tx < 1 || tx > n || ty < 1 || ty > m) {
td = ((td + 2) & 3);
tx = a[id].x + ch_d[td][0];
ty = a[id].y + ch_d[td][1];
}
if (book[tx][ty][td]) {
a[id].st = book[tx][ty][td];
a[id].stp = book[a[id].x][a[id].y][a[id].d] + 1 - book[tx][ty][td];
return;
}
book[tx][ty][td] = book[a[id].x][a[id].y][a[id].d] + 1;
a[id].x = tx;
a[id].y = ty;
a[id].d = td;
}
}

接下来对于怎么求答案进行分析:

首先如果有一个细菌没有经过陷阱,那么直接输出 -1

接下来要把问题分为两部分。求出最晚进入循环的细菌进入循环的时刻,记为 maxst ,则在 maxst 之前的时刻可以暴力枚举,在 maxst 之后的时间可以用数学方法。

maxst 之前的时刻枚举如下,注意此时已经有一些细菌进入循环,所以也要考虑进入循环的细菌。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
for (long long i = 0; i <= mst; i++) {
bool flag = true;
for (int j = 1; j <= k; j++) {
bool f = false;
for (int l = 0; l < 4; l++) {
if (a[j].pas[l] == 0) continue;
if (a[j].pas[l] < a[j].st) {
if (a[j].pas[l] == i) {
f = true;
break;
}
}
else if (i >= a[j].pas[l] && i % a[j].stp == a[j].pas[l] % a[j].stp) {
f = true;
break;
}
}
if (f == false) {
flag = false;
break;
}
}
if (flag) {
printf("%lld\n", i);
return 0;
}
}

而在进入循环之后,实际上就是求解这样一个方程组:

{xa[1].pas0 or a[1].pas1 or a[1].pas2 or a[1].pas3(moda[1].stp)xa[2].pas0 or a[2].pas1 or a[2].pas2 or a[2].pas3(moda[2].stp)xa[3].pas0 or a[3].pas1 or a[3].pas2 or a[3].pas3(moda[3].stp)xa[4].pas0 or a[4].pas1 or a[4].pas2 or a[4].pas3(moda[4].stp)xa[5].pas0 or a[5].pas1 or a[5].pas2 or a[5].pas3(moda[5].stp)

因为一共就 5 个细菌,每个细菌 4 种选择,所以可以先枚举所有的情况,求解 45 次如下方程组:

{xpas1(moda[1].stp)xpas2(moda[2].stp)xpas3(moda[3].stp)xpas4(moda[4].stp)xpas5(moda[5].stp)

标准答案大概是现在使用扩展 CRT (中国剩余定理),求解同余方程组。如果这样黑题也就勉勉强强,但有意思的是直接暴力 CRT 就可以 AC 。这黑题就有点水了。

枚举方程组和暴力 CRT 如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
long long cal() {
long long res = yushu[1];
long long lllcm = moshu[1];
for (int i = 2; i <= k; i++) {
int cnt = 0;
while (res % moshu[i] != yushu[i]) {
res += lllcm;
res %= llcm;
if (++cnt > moshu[i]) return LLONG_MAX;
}
lllcm = lcm(lllcm, moshu[i]);
}
while (res < mst) res += llcm; //注意要在循环之内
return res;
}

void doit(int id) {
if (id == k + 1) {
ans = min(ans, cal());
return;
}
for (int i = 0; i < 4; i++) {
if (a[id].pas[i] < a[id].st) continue;
moshu[id] = a[id].stp;
yushu[id] = a[id].pas[i] % a[id].stp;
doit(id + 1);
}
}

个人觉得降紫还是合理的。

AC代码