QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#533079 | #9224. Express Eviction | ucup-team004# | AC ✓ | 3650ms | 466564kb | C++20 | 4.9kb | 2024-08-25 16:59:42 | 2024-08-25 16:59:44 |
Judging History
answer
#include <bits/stdc++.h>
using i64 = long long;
using u64 = unsigned long long;
using u32 = unsigned;
constexpr int dx[] = {1, 0, -1, 0};
constexpr int dy[] = {0, 1, 0, -1};
template<class T>
struct PQ {
std::queue<T> q[3];
T pop() {
int i = -1;
for (int j = 0; j <= 2; j++) {
if (!q[j].empty()) {
if (i == -1 || q[j].front() < q[i].front()) {
i = j;
}
}
}
assert(i != -1);
auto res = q[i].front();
q[i].pop();
return res;
}
void push(const T &a, int c) {
q[c].push(a);
}
bool empty() {
for (int i = 0; i <= 2; i++) {
if (!q[i].empty()) {
return false;
}
}
return true;
}
};
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int n, m;
std::cin >> n >> m;
std::vector<std::string> s(n);
for (int i = 0; i < n; i++) {
std::cin >> s[i];
}
std::vector S(n, std::vector<int>(m));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
S[i][j] = (s[i][j] == '#');
}
}
std::vector dp(n + 1, std::vector(m + 1, std::vector(n + 1, std::vector(m + 1, -1))));
std::vector cost(n + 1, std::vector(m + 1, std::array<int, 4>{}));
for (int x = 0; x <= n; x++) {
for (int y = 0; y <= m; y++) {
for (int dir = 0; dir < 4; dir++) {
int nx = x + dx[dir];
int ny = y + dy[dir];
if (nx < 0 || nx > n || ny < 0 || ny > m) {
continue;
}
int lx = -1, rx = 0, ly = -1, ry = 0;
if (dir == 0) {
lx++;
} else if (dir == 1) {
ly++;
} else if (dir == 2) {
rx--;
} else {
ry--;
}
for (int dx = lx; dx <= rx; dx++) {
for (int dy = ly; dy <= ry; dy++) {
int ax = nx + dx;
int ay = ny + dy;
if (0 <= ax && ax < n && 0 <= ay && ay < m) {
cost[x][y][dir] += S[ax][ay];
}
}
}
}
}
}
std::vector dis(n + 1, std::vector(m + 1, std::vector(n + 1, std::vector(m + 1, -1))));
for (int sx = 0; sx <= n; sx++) {
for (int sy = 0; sy <= m; sy++) {
PQ<std::array<int, 3>> pq;
pq.push({0, sx, sy}, 0);
while (!pq.empty()) {
auto [d, x, y] = pq.pop();
if (dis[sx][sy][x][y] != -1) {
continue;
}
dis[sx][sy][x][y] = d;
for (int dir = 0; dir < 4; dir++) {
int nx = x + dx[dir];
int ny = y + dy[dir];
if (nx < 0 || nx > n || ny < 0 || ny > m) {
continue;
}
pq.push({d + cost[x][y][dir], nx, ny}, cost[x][y][dir]);
}
}
}
}
PQ<std::array<int, 5>> pq;
pq.push({s[0][0] == '.' ? 0 : 1, 0, 0, 0, 0}, 0);
int ans = 1E9;
while (!pq.empty()) {
auto [d, x, y, a, b] = pq.pop();
if (dp[x][y][a][b] != -1) {
continue;
}
dp[x][y][a][b] = d;
if (x == n && y == m) {
ans = std::min(ans, d);
}
for (int dir = 0; dir < 4; dir++) {
int nx = x + dx[dir];
int ny = y + dy[dir];
if (nx < 0 || nx > n || ny < 0 || ny > m) {
continue;
}
pq.push({d + cost[x][y][dir], nx, ny, a, b}, cost[x][y][dir]);
pq.push({d + cost[x][y][dir], nx, ny, nx, ny}, cost[x][y][dir]);
}
for (int dx = -1; dx <= 1; dx += 2) {
for (int dy = -1; dy <= 1; dy += 2) {
int nx = a + dx;
int ny = b + dy;
if (nx < 0 || nx > n || ny < 0 || ny > m) {
continue;
}
int ax = std::min(a, nx);
int ay = std::min(b, ny);
int c = dis[x][y][nx][ny];
if (ax < x - 1 || ax > x || ay < y - 1 || ay > y) {
c -= S[ax][ay];
}
assert(c >= 0);
if (c <= 2) {
pq.push({d + c, nx, ny, x, y}, c);
}
}
}
}
std::cout << ans << "\n";
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3688kb
input:
4 6 .##... .#.... ##.... ....#.
output:
1
result:
ok 1 number(s): "1"
Test #2:
score: 0
Accepted
time: 106ms
memory: 12056kb
input:
20 30 ...########################### #..########################### ...########################### ...########################### .############################# ...########################### ...########################### #..########################### ...########################### ..#...............
output:
11
result:
ok 1 number(s): "11"
Test #3:
score: 0
Accepted
time: 491ms
memory: 39020kb
input:
35 35 ....###########...#########........ ##..#######################..#####. ....#######################..#####. ...#.....##################..#####. .##......##################.....##. .##..##..#############.....#....##. .....##..#############......##..##. ....#....#############..##..##..##. ####.....
output:
16
result:
ok 1 number(s): "16"
Test #4:
score: 0
Accepted
time: 139ms
memory: 17576kb
input:
30 20 .#..........##...... ..#......#..##...... .......#..........#. ..#......#..##...... .....#......#....... .#.........#........ ......#...#......... ..#..##..#...#...... ......#.......#..... ..#....#............ ........#..#.#...... ....##..#........... .........#.#.......# ........##.......... ...
output:
5
result:
ok 1 number(s): "5"
Test #5:
score: 0
Accepted
time: 1790ms
memory: 84296kb
input:
50 45 ...##................##...................#.. ...#......#.#..........#.#.....####....#....# ....#.....#..............#..#..##......##..#. .....#......######........#.............#.... ......##...#...##...##.......#....#..#...##.. ...#..##.....##...###.............#..##.....# ...#......########...
output:
24
result:
ok 1 number(s): "24"
Test #6:
score: 0
Accepted
time: 1761ms
memory: 82180kb
input:
50 45 ...#...................#.####................ ...........................#......###.#..##.. ..#.#........##.##....#....#................. .....#.....#.##.#.#.........#................ ...........#.#.#.#.##....#.#.......##.#..#... ...#......#...#####......#...##.##........#.. ............####.....
output:
23
result:
ok 1 number(s): "23"
Test #7:
score: 0
Accepted
time: 2450ms
memory: 185256kb
input:
50 50 ##................................................ #################################################. ####.............................................. ####.............................................. ####..############################################ ####......................................
output:
7
result:
ok 1 number(s): "7"
Test #8:
score: 0
Accepted
time: 2448ms
memory: 94352kb
input:
50 50 #.##.##..###...#######.##..#####.#...######.###### .####.##.##.#############.#.#.###.##.###.#.#.###.# ...####.##########.###.####.#.####.#############.. #.#..########.#.#####.#..#.##....##########.#.#### ###.##.####.###.#######..##.#####...##.#######..#. #####.########..########..#######.##.#....
output:
72
result:
ok 1 number(s): "72"
Test #9:
score: 0
Accepted
time: 2187ms
memory: 118244kb
input:
50 50 .................................................. .................................................. .................................................. .................................................. .................................................. ..........................................
output:
0
result:
ok 1 number(s): "0"
Test #10:
score: 0
Accepted
time: 1959ms
memory: 110200kb
input:
43 50 ...........####################################### #########...###################################### #########...####....############################## ##########..#........############################# ##########...........############################# #####.....#....####...##########......#...
output:
5
result:
ok 1 number(s): "5"
Test #11:
score: 0
Accepted
time: 3ms
memory: 4644kb
input:
8 13 .##.......... .##..#######. .##......#.#. ...#.....#.#. ....###..#.#. ##..###..#.#. ##.......#.#. ##.......#.#.
output:
1
result:
ok 1 number(s): "1"
Test #12:
score: 0
Accepted
time: 305ms
memory: 31572kb
input:
36 25 ##....................... ......................... #........................ ......................... ......................... ......................... ......................... ......................... ......................... ..................#.....# ..............#.#..#..#.. ...........
output:
7
result:
ok 1 number(s): "7"
Test #13:
score: 0
Accepted
time: 126ms
memory: 13928kb
input:
30 20 ...............#.... .#......#...#.....#. .#...##..####..#..#. ...............#..#. .....##.##.##....... ....#........#...... ..#.#.........#..... .#.##......#..#..##. #.#........#........ ##.#.##.....#....... .......#.....####### ##......#.#......##. ....##..#....#..##.# #...##..###..#...#.# ...
output:
6
result:
ok 1 number(s): "6"
Test #14:
score: 0
Accepted
time: 2ms
memory: 3768kb
input:
1 50 ....#.#####.########.#.#...##..#..#..##.....##.#..
output:
25
result:
ok 1 number(s): "25"
Test #15:
score: 0
Accepted
time: 2669ms
memory: 92672kb
input:
50 50 ....############################################## ##..############################################## ....############################################## ...#....########################################## ..#.....########################################## .....#..###############################...
output:
22
result:
ok 1 number(s): "22"
Test #16:
score: 0
Accepted
time: 1691ms
memory: 122612kb
input:
40 50 ...###############################................ .....#############################...############. ##....############################..#############. ###...############################...############. ####...###########################...############. #####...###########################..##...
output:
9
result:
ok 1 number(s): "9"
Test #17:
score: 0
Accepted
time: 0ms
memory: 4616kb
input:
8 13 .##.......... .##..#######. .##......###. ...#.....###. ....###..###. ##..###..###. ##.......###. ##.......###.
output:
1
result:
ok 1 number(s): "1"
Test #18:
score: 0
Accepted
time: 10ms
memory: 5036kb
input:
10 15 ...#........... ............... .#............. ...#........... ......#.#.....# .....#.....#### ....#.....#.... ...#...#.#..... ...#........#.. ...##.......#..
output:
2
result:
ok 1 number(s): "2"
Test #19:
score: 0
Accepted
time: 11ms
memory: 5036kb
input:
50 3 .## .#. #.. ..# ..# #.. ### ... ### ... ### ##. ... ... ##. .#. #.. ... ##. ... #.. ..# ..# ..# ##. ..# ..# #.. .## ... ##. ..# ... ... ### ..# .#. #.# #.. .#. ### ### #.# #.# ### ..# ### ... #.. ..#
output:
21
result:
ok 1 number(s): "21"
Test #20:
score: 0
Accepted
time: 2455ms
memory: 122584kb
input:
50 50 .##...#..########################......########### #######..########################......########### #######..########################..##..########### #######..########################..##.........#### ####.....########################....#.........### ####....#.....##############.....#....#...
output:
29
result:
ok 1 number(s): "29"
Test #21:
score: 0
Accepted
time: 115ms
memory: 16304kb
input:
20 30 .....####......####........... ###..####..##..####..########. ###..####..##.....#..####..##. .....####....#....#..####..##. ....#....#....##.....##....... .###......##..##.....##....... .###..##..##..#########..##### .###..##..##..######.....##### ......##..##..######....#..... .....#....##..#...
output:
6
result:
ok 1 number(s): "6"
Test #22:
score: 0
Accepted
time: 262ms
memory: 24764kb
input:
25 36 ....###########....................# ##..#############...##########....## ....#############....########....### ...#.....#########...########...#### .##......##########....######..##### .##..##..##########.....#####..##### .....##..###########......###....... ....#....#############.......#........
output:
11
result:
ok 1 number(s): "11"
Test #23:
score: 0
Accepted
time: 3019ms
memory: 466564kb
input:
50 50 ##................................................ #################################################. ####.............................................. ####.............................................. ####..############################################ ####......................................
output:
3
result:
ok 1 number(s): "3"
Test #24:
score: 0
Accepted
time: 2127ms
memory: 91540kb
input:
50 50 ################################################## ################################################## ################################################## ################################################## ################################################## #######################################...
output:
99
result:
ok 1 number(s): "99"
Test #25:
score: 0
Accepted
time: 3650ms
memory: 307284kb
input:
50 50 ................#.....#....#..........#..#..#....# #...........#........#..................#......... ....#......#....#..........#...................... #...............#.##.....#..#...#.#.#.#...#...#... .........#..#..............#...........#....#..... .......##.....#.........##....##..........
output:
0
result:
ok 1 number(s): "0"
Test #26:
score: 0
Accepted
time: 0ms
memory: 3776kb
input:
4 2 #. #. ## ..
output:
2
result:
ok 1 number(s): "2"
Test #27:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
1 1 .
output:
0
result:
ok 1 number(s): "0"
Test #28:
score: 0
Accepted
time: 1ms
memory: 3920kb
input:
4 6 .##... .#.... ##.... ....#.
output:
1
result:
ok 1 number(s): "1"
Test #29:
score: 0
Accepted
time: 0ms
memory: 3868kb
input:
4 3 .## ### .#. #.#
output:
3
result:
ok 1 number(s): "3"
Test #30:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
2 2 .# #.
output:
1
result:
ok 1 number(s): "1"
Test #31:
score: 0
Accepted
time: 264ms
memory: 19400kb
input:
25 36 ....################################ ##..################################ ....################################ ...#.....########################### .##......########################### .##..##..########################### .....##..########################### ....#....##########################...
output:
10
result:
ok 1 number(s): "10"
Test #32:
score: 0
Accepted
time: 2492ms
memory: 107524kb
input:
50 50 ..#.#####....##...#..##.##....###....##.##.####.#. ..#######...#..###..#....#..##..###.....##...#...# ..#.#..#........#..####..#######.##...##.###..#.#. ###.....#......#..#.##.#....##..#.#............... ....##.##...#.#....#.#####.......#..#.....##...##. ###..#..##..#..#.#...##..........#........
output:
29
result:
ok 1 number(s): "29"
Test #33:
score: 0
Accepted
time: 2ms
memory: 3996kb
input:
6 10 .##.....## .##..#.... .##...#... ...#...##. ....#..##. ##.....##.
output:
2
result:
ok 1 number(s): "2"
Test #34:
score: 0
Accepted
time: 17ms
memory: 5868kb
input:
18 13 #..#..#.#..#. ...#....##.## ###...#.#.... .###...#.#.#. ...###..#.#.. ..#.....####. ##...####.... ..####.#..... #####...#.... ..##.##....## .#....#..##.# #..#......### #.#.##...###. #..##.......# #.####..#...# #.#.#...#...# ...#.#.##.### ...#.#.###..#
output:
11
result:
ok 1 number(s): "11"
Test #35:
score: 0
Accepted
time: 1941ms
memory: 108976kb
input:
45 50 ....#######...##################.......###........ ##..#######....#################..##...###..#####. ....########...#################..##..####..#####. ...#.....###############.....###..##........#####. .##......###############.....###....#......#....#. .##..##..###############..#.....#....##...
output:
24
result:
ok 1 number(s): "24"
Test #36:
score: 0
Accepted
time: 2ms
memory: 3972kb
input:
5 10 ..#.#.#.#. .#.####.#. ##...#...# ######.##. .###.###.#
output:
6
result:
ok 1 number(s): "6"
Test #37:
score: 0
Accepted
time: 1955ms
memory: 103084kb
input:
45 50 ....#################...############......######## ##..#################...########............###### ....##################...###.........####....##### ...#.....############.....#......#########...##### .##......############..#......#############...#### .##..##..############...#..#..#########...
output:
24
result:
ok 1 number(s): "24"
Test #38:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
1 1 #
output:
1
result:
ok 1 number(s): "1"
Test #39:
score: 0
Accepted
time: 264ms
memory: 24268kb
input:
25 36 .....#################.............. ###..#################...##########. .....#################...##########. ....#......###########....#########. .###.......############........####. .###..###..#############........###. .###..###..##################...###. ......###..###################..###...
output:
8
result:
ok 1 number(s): "8"
Test #40:
score: 0
Accepted
time: 2540ms
memory: 101492kb
input:
50 50 .#..#..##..#......####...##....##.##...###....#..# .....#.#..###....##..#####..##..###.##.##.#.#.#.## #.#..##.#..#....##..#..##...#.##..#########.#.##.# ###...#.#....##..##.###....#.##..#...####.#.####.# .#.#.#.#...#..#####.#.##..##.#.##..##.#....#####.. #.##.#.#####....###.###.......##..###.....
output:
43
result:
ok 1 number(s): "43"
Test #41:
score: 0
Accepted
time: 2ms
memory: 3944kb
input:
6 10 .#.....#.. ....#..##. ...#...### ###...#... .##..#.... ..#.....#.
output:
2
result:
ok 1 number(s): "2"
Test #42:
score: 0
Accepted
time: 2169ms
memory: 137712kb
input:
43 50 ##...#............################################ ######.....................####################### ###############..................################# #########################...........############## ###############################.......############ ######....................#######.........
output:
6
result:
ok 1 number(s): "6"
Test #43:
score: 0
Accepted
time: 11ms
memory: 5128kb
input:
15 10 ....##.... ##..##..#. ##..##..#. ....##..#. ...#....#. .##.....#. .##..####. .##..####. .....####. ....#..... ####...... ####..#### ......#### ......#### ..........
output:
2
result:
ok 1 number(s): "2"
Test #44:
score: 0
Accepted
time: 272ms
memory: 20184kb
input:
30 30 ##...#####.....#.##..#.##.#### #.#...#.#.####.##.###..#.#..#. ##..#..#.#....#####..#..#..... .##.#.##..#...####..#..#..##.. #.####..##...##.#....#.###...# #.###.####.#....###.#...#.#... .#..#.#.##..#...##.......##.#. ...#.#.##.#.#.#.#.#####.#.#### ##.#....###..#.#..###....###.# .##.##.#..###.#...
output:
27
result:
ok 1 number(s): "27"
Test #45:
score: 0
Accepted
time: 2434ms
memory: 108200kb
input:
50 50 ....#.#..#.......#..#...##......#.#....#....#...#. ...#..##....#.#.....##.#........###.....#......... .......#.#......#.#.....##.....#.#..........#.#... .#.......#...##.#......#.....#.#...##.##.....#.#.# ....#..#..............#.#..#....#..#......#.....#. ...#...#...#......##.....##.#.....#..#....
output:
22
result:
ok 1 number(s): "22"
Test #46:
score: 0
Accepted
time: 491ms
memory: 30740kb
input:
35 35 ##................................. .#.........................#.#..... ........#.................#....#... ...#....#...........#.............. ...#.##...#............##......#... ###.#.##..#........#..#........#... #.......##..##.#.#...##.#..##...... #.#.#.#.#..##......#.#..#....#..... ###.##...
output:
16
result:
ok 1 number(s): "16"
Test #47:
score: 0
Accepted
time: 275ms
memory: 23300kb
input:
36 25 .......................#. #.#....#.#.##.#........#. ..#.##.#.##.#..##..#.##.. ####............#..#..... #...##.......##.#..#..... ##.##.#..#...#.#......... .#.####..##......#.....#. ...#.##....#..........#.. ##.....#....#..#..##.#... .#......##...#.....#...#. .#...#...#...###.......#. .#..##.....
output:
11
result:
ok 1 number(s): "11"
Test #48:
score: 0
Accepted
time: 2289ms
memory: 103888kb
input:
50 50 ####.#.#.###.#.##.....#.##.#.##.............#..#.. #....#.#..#..##.......#...........##.#......#..... ##.......##.##........#...#.###..##...##....#...## ........##.#.##.......#.#..##.#................... ..#.#......#.#.#...#..#........#......#..#........ ##.......##..###......##.#......#....##...
output:
27
result:
ok 1 number(s): "27"
Test #49:
score: 0
Accepted
time: 316ms
memory: 20692kb
input:
20 49 #..#.###.#...##..######..#..#.#.##.##....#..#.#.# #...##..####.##.####.#.#.#.##.#.#..#.######....#. .##.###.#.#..#####.####.#.##..###.##.####.##.#.## ...#.###....#######.#.#..#.....##.##..##.#...#.## .##..##.###.#.....###.....#.#..##.######...###### ##.#.##.#..##......###..#..#..##.##...##.###...
output:
32
result:
ok 1 number(s): "32"
Test #50:
score: 0
Accepted
time: 2940ms
memory: 267176kb
input:
50 50 ###.....#.....#................................... .##..#..#..#..#..################################. .....#.....#.....################################. .....#.....#.....###.............................. ####################.............................. ####################..#################...
output:
3
result:
ok 1 number(s): "3"
Test #51:
score: 0
Accepted
time: 259ms
memory: 19804kb
input:
25 36 .......############################# #####..############################# #####..############################# .......############################# ......#.......###################### .#####........###################### .#####..####..###################### .#####..####..#####################...
output:
7
result:
ok 1 number(s): "7"
Test #52:
score: 0
Accepted
time: 1432ms
memory: 80064kb
input:
40 50 #################..##################...########## #################..###############......########## #################..############.........########## ############################........############## ########################.........################# #####################.........#########...
output:
48
result:
ok 1 number(s): "48"
Test #53:
score: 0
Accepted
time: 2041ms
memory: 91428kb
input:
50 50 .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#...
output:
49
result:
ok 1 number(s): "49"
Test #54:
score: 0
Accepted
time: 2596ms
memory: 126592kb
input:
50 50 ######........................#............#...### #############################################..### #############################################..### ##############..#############################..### ##############....########....###############..### ##############......######......#######...
output:
32
result:
ok 1 number(s): "32"
Test #55:
score: 0
Accepted
time: 1ms
memory: 3580kb
input:
3 3 .#. ### .##
output:
3
result:
ok 1 number(s): "3"
Test #56:
score: 0
Accepted
time: 3254ms
memory: 260528kb
input:
50 50 .#..#.......#.##...#..#....#..#.#.............#... #....#...#.#..........#..#.#.....#......#......... #.....##.#..#....###...............#...#.........# #........##..#...#..##..#..............#.#.#...... ##.#..................#.............#........#...# ..........#...###.#.#.....#.....#...#.....
output:
4
result:
ok 1 number(s): "4"
Test #57:
score: 0
Accepted
time: 123ms
memory: 14868kb
input:
20 30 ...#################.......... #..#################..#######. ...#################..##...... ...#################..##...... .###################..##..#### ...#################..##...... ...#################....#..... #..###########......#....####. ...###########.......##..####. ..#......#####....
output:
6
result:
ok 1 number(s): "6"
Test #58:
score: 0
Accepted
time: 1591ms
memory: 101228kb
input:
40 50 #.....#####...........#############.........###### ####..#####.....####..############............#### ###...#####...######..###########....#####.....### ###...####...####.....##########....########....## ##...#####...####....#.............##########...## ##...#####...####..##.............#####...
output:
9
result:
ok 1 number(s): "9"
Test #59:
score: 0
Accepted
time: 2228ms
memory: 154504kb
input:
50 43 .#####..################################### .####...################################### .#####..#############......################ .##################...........############# .################.......#.......########### .###############......####.#.....########## ..#############....###########...
output:
6
result:
ok 1 number(s): "6"
Test #60:
score: 0
Accepted
time: 2400ms
memory: 120836kb
input:
50 50 #####...........####.##.###########....#..#.#....# #..##..##.##...#####.##.###..###.#..#...#.......#. .#......####.##.#####.#..#..#.###..#..#...#....... ...#############.......#.####.#.........#......... #.#.###.....#####....##..#..###.........#......... ##.#..#..#..#...#......###...#..#..#.##...
output:
32
result:
ok 1 number(s): "32"
Test #61:
score: 0
Accepted
time: 2639ms
memory: 122352kb
input:
50 50 ####............############..####.##########..#.# ##..###.#.##.#.##.#.########.#..###.#########.#### #.##.###.#####.#.#.#####.##.#####...##.########.## ###..####.######.##..####.#..##.........#......... #.######.#..#...#######.#######.........#......... ..###...##..#.###.####.##.###...##...##...
output:
31
result:
ok 1 number(s): "31"
Test #62:
score: 0
Accepted
time: 1607ms
memory: 76856kb
input:
50 43 ....#############...#.###.##.#............. ...###...#.###......#.#..#................. ...#####.###..#..###..#.#..#............... ##########.#........#....#................. ####....#..#..##.#...#...#.#............... ####......#..##.#..#.#....#................ ###.......##..#.....#..##...#....
output:
38
result:
ok 1 number(s): "38"
Test #63:
score: 0
Accepted
time: 1952ms
memory: 91512kb
input:
50 50 #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#....
output:
50
result:
ok 1 number(s): "50"
Test #64:
score: 0
Accepted
time: 2493ms
memory: 120996kb
input:
50 50 ######........................#............#...### #############################################..### #############################################..### #############################################..### #############################################..### #######################################...
output:
31
result:
ok 1 number(s): "31"
Test #65:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
4 6 .##... .#.... ##.... #...#.
output:
2
result:
ok 1 number(s): "2"
Test #66:
score: 0
Accepted
time: 2585ms
memory: 130432kb
input:
50 50 ..##.#....#.........#...#..#.....#...##.#.....#... ........#..#.#............#....#.#......#...#..... .#....#.#.......#..#..#.....................##..#. #..........#.#.###.#.....#...#........#.#.....#.#. .....#####.##....#...##..#.......#...#...##....#.. ....##.#.#..##..#...#.#...............#...
output:
13
result:
ok 1 number(s): "13"
Test #67:
score: 0
Accepted
time: 1757ms
memory: 89196kb
input:
43 50 .#################################................ ##################################................ ##################################..############.. ##################################..############.. #..###############################..#############. #..###############################........
output:
38
result:
ok 1 number(s): "38"
Test #68:
score: 0
Accepted
time: 11ms
memory: 5360kb
input:
15 10 .......... #########. .......... .......... .######### .......... .......... #########. ......###. ......###. .###..###. .###...... .###...... .######### ..........
output:
0
result:
ok 1 number(s): "0"
Test #69:
score: 0
Accepted
time: 14ms
memory: 4948kb
input:
11 18 ##....##..####...# ##.##..##..##.#.#. ...##.#.##..#.##.# #...########...### ..#.##.#.#.##.#.## #####....#..###.## .###...#.##.##.#.. #..##.#.#####..#.. ####..#..####..### #.#..###.#.##.#### .#.###.#.##.##....
output:
15
result:
ok 1 number(s): "15"
Test #70:
score: 0
Accepted
time: 275ms
memory: 22924kb
input:
36 25 .#....................... ....#####..#.#.#######... .....############..##.##. ####.#.#.###..##.##.###.. .#####.####...........#.. #.##.##...............##. #............#.###...###. .#......#.#########..###. ##...##.##..##.####..###. #...#########.....#...#.. ##..#.#..##..#.##........ .#..##.#...
output:
8
result:
ok 1 number(s): "8"
Test #71:
score: 0
Accepted
time: 1849ms
memory: 123560kb
input:
50 40 .#.##.##..#.#........................... ###..##.####.......#####.#####.#.#..#... .#######.#.#....##...###.##.#.#######.#. ###.#######...###..####.########.#####.. ..####.##......####.########.####.##.##. .###..###....#####.####.#.#.##.######... ..#####.##..#.##.###.###........##..###. .#...##...
output:
9
result:
ok 1 number(s): "9"
Test #72:
score: 0
Accepted
time: 2172ms
memory: 153884kb
input:
50 43 .#......#.#..#.####..#.#.#.....#.#.#.#..... ..#....##.###.##..###.#.#..#......#..#....# ..###...#.#....##...##.....#.#######...#.## ..#......##.##....##.####..##.#.###.#.#..#. ...###.#..###....#....#.#....#.#.####..#### .....#.#..##...##..#..#..........##.#....## ....#....#####..####...#.........
output:
5
result:
ok 1 number(s): "5"
Test #73:
score: 0
Accepted
time: 3107ms
memory: 235524kb
input:
50 50 #.##.....#............###.##...........#.....#.... ..##..#..#..####.###..#.####..#.....#............. ..##..#..#..#.........###.##..#..#.....#..#..#..#. .#.#..#...............###.##..#..#..#.....#..#..#. .##......#........#..#.##..#..#..#..#..#.......... ..#......#..##..############........#.....
output:
7
result:
ok 1 number(s): "7"
Test #74:
score: 0
Accepted
time: 278ms
memory: 22808kb
input:
36 25 .......................#. ##....##.#.##.#....#.#... ....#.#..#...#....#.#.... #..#..........#......##.. .................#......# ##...........##.........# ....#.#..##...........#.. #.###.#....#.........#..# .......#....##...#.#...## ........##......#.#.....# .#..##...#....##...#.#.#. #....#.....
output:
10
result:
ok 1 number(s): "10"
Test #75:
score: 0
Accepted
time: 1861ms
memory: 81520kb
input:
44 50 .##.#..#.##..##......#.##.##....##.#.#####.#..#### ...#.########..##..#.#.#...#.#####.#......#.#.#### .#..#...#....####..........####...####........#.## #.#.#....#...##.##.###.#....#..###.#.....##...###. #.######......#..#.##.##.#.....###.##..#####...##. .....#.###...##.#.##.####...####.######...
output:
42
result:
ok 1 number(s): "42"
Test #76:
score: 0
Accepted
time: 2719ms
memory: 120556kb
input:
50 50 ....############.....######......########....##### ##..###########....######.....##########....###### ....##########....#####......##########....###...# ...#....####....#####......###...#####....###....# ..#.....##.....#####.....###.....###....####....## .....#..#.....#####....###......###.......
output:
19
result:
ok 1 number(s): "19"
Extra Test:
score: 0
Extra Test Passed