QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#590278 | #9224. Express Eviction | Chief_Ning | AC ✓ | 17ms | 26764kb | C++20 | 3.0kb | 2024-09-25 23:02:50 | 2024-09-25 23:02:51 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using u64 = unsigned long long;
using u32 = unsigned int;
using i64 = long long;
mt19937_64 rnd(random_device{}());
const int mod = 998244353;
const int N = 3e5 + 5;
const int M = 2e6 + 5;
int n, m, s, t;
template<typename T>
struct Dinic {
int n;
vector<int> h, dep, cur;
int edgeNum = 1;
struct Edge {
int to, nxt;
T rest;
};
vector<Edge> adj;
Dinic(int PointNum) : n(PointNum), h(n + 1), dep(n + 1), cur(n + 1), adj(M) {}
void add(int u, int v, int w) {
edgeNum += 1;
adj[edgeNum] = {v, h[u], w};
h[u] = edgeNum;
edgeNum += 1;
adj[edgeNum] = {u, h[v], 0};
h[v] = edgeNum;
}
bool bfs() {
for(int i = 1; i <= n; i++) dep[i] = 0;
queue<int> q;
q.push(s);
dep[s] = 1;
while(q.size()) {
int u = q.front();
q.pop();
for(int i = h[u]; i; i = adj[i].nxt) {
if(!dep[adj[i].to] && adj[i].rest > 0) {
dep[adj[i].to] = dep[u] + 1;
q.push(adj[i].to);
if(adj[i].to == t) return 1;
}
}
}
return 0;
}
T augment(int u, T limit) {
if(u == t) return limit;
T sum = 0;
for(int i = cur[u]; i; i = adj[i].nxt) {
cur[u] = i;
if(dep[adj[i].to] == dep[u] + 1 && adj[i].rest > 0) {
int flow = augment(adj[i].to, min(limit, adj[i].rest));
adj[i].rest -= flow;
adj[i ^ 1].rest += flow;
sum += flow;
limit -= flow;
if(!limit) break;
}
}
if(!sum) dep[u] = 0;
return sum;
}
T dinic() {
T maxFlow = 0;
while(bfs()) {
for(int i = 1; i <= n; i++) cur[i] = h[i];
maxFlow += augment(s, numeric_limits<T>::max());
}
return maxFlow;
}
};
void RuinGuard(int tc)
{
cin >> n >> m;
vector idx(n + 1, vector<array<int, 2>>(m + 1));
int nodeNum = 0;
vector mp(n + 1, vector<int>(m + 1));
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
char c;
cin >> c;
if(c == '#') {
mp[i][j] = 1;
idx[i][j][0] = ++nodeNum;
idx[i][j][1] = ++nodeNum;
}
}
}
//cerr << "@" << '\n';
s = nodeNum + 1, t = nodeNum + 2;
Dinic<int> G(nodeNum + 5);
for(int i = 1; i <= m; i++) if(mp[1][i]) G.add(idx[1][i][1], t, 1e9);
for(int i = 1; i <= n; i++) if(mp[i][m]) G.add(idx[i][m][1], t, 1e9);
for(int i = 1; i <= m; i++) if(mp[n][i]) G.add(s, idx[n][i][0], 1e9);
for(int i = 1; i <= n; i++) if(mp[i][1]) G.add(s, idx[i][1][0], 1e9);
//cerr << '@' << '\n';
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
if(!mp[i][j]) continue;
G.add(idx[i][j][0], idx[i][j][1], 1);
for(int u = max(1, i - 2); u <= min(n, i + 2); u++) {
for(int v = max(1, j - 2); v <= min(m, j + 2); v++) {
if(u == i && v == j || !mp[i][j]) continue;
G.add(idx[i][j][1], idx[u][v][0], 1e9);
}
}
}
}
cout << G.dinic() << '\n';
}
signed main()
{
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int testcase = 1;
//cin >> testcase;
for(int tc = 1; tc <= testcase; tc++) {
RuinGuard(tc);
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 26636kb
input:
4 6 .##... .#.... ##.... ....#.
output:
1
result:
ok 1 number(s): "1"
Test #2:
score: 0
Accepted
time: 0ms
memory: 26568kb
input:
20 30 ...########################### #..########################### ...########################### ...########################### .############################# ...########################### ...########################### #..########################### ...########################### ..#...............
output:
11
result:
ok 1 number(s): "11"
Test #3:
score: 0
Accepted
time: 0ms
memory: 26524kb
input:
35 35 ....###########...#########........ ##..#######################..#####. ....#######################..#####. ...#.....##################..#####. .##......##################.....##. .##..##..#############.....#....##. .....##..#############......##..##. ....#....#############..##..##..##. ####.....
output:
16
result:
ok 1 number(s): "16"
Test #4:
score: 0
Accepted
time: 0ms
memory: 26728kb
input:
30 20 .#..........##...... ..#......#..##...... .......#..........#. ..#......#..##...... .....#......#....... .#.........#........ ......#...#......... ..#..##..#...#...... ......#.......#..... ..#....#............ ........#..#.#...... ....##..#........... .........#.#.......# ........##.......... ...
output:
5
result:
ok 1 number(s): "5"
Test #5:
score: 0
Accepted
time: 4ms
memory: 26664kb
input:
50 45 ...##................##...................#.. ...#......#.#..........#.#.....####....#....# ....#.....#..............#..#..##......##..#. .....#......######........#.............#.... ......##...#...##...##.......#....#..#...##.. ...#..##.....##...###.............#..##.....# ...#......########...
output:
24
result:
ok 1 number(s): "24"
Test #6:
score: 0
Accepted
time: 9ms
memory: 26728kb
input:
50 45 ...#...................#.####................ ...........................#......###.#..##.. ..#.#........##.##....#....#................. .....#.....#.##.#.#.........#................ ...........#.#.#.#.##....#.#.......##.#..#... ...#......#...#####......#...##.##........#.. ............####.....
output:
23
result:
ok 1 number(s): "23"
Test #7:
score: 0
Accepted
time: 0ms
memory: 26624kb
input:
50 50 ##................................................ #################################################. ####.............................................. ####.............................................. ####..############################################ ####......................................
output:
7
result:
ok 1 number(s): "7"
Test #8:
score: 0
Accepted
time: 17ms
memory: 26660kb
input:
50 50 #.##.##..###...#######.##..#####.#...######.###### .####.##.##.#############.#.#.###.##.###.#.#.###.# ...####.##########.###.####.#.####.#############.. #.#..########.#.#####.#..#.##....##########.#.#### ###.##.####.###.#######..##.#####...##.#######..#. #####.########..########..#######.##.#....
output:
72
result:
ok 1 number(s): "72"
Test #9:
score: 0
Accepted
time: 6ms
memory: 26688kb
input:
50 50 .................................................. .................................................. .................................................. .................................................. .................................................. ..........................................
output:
0
result:
ok 1 number(s): "0"
Test #10:
score: 0
Accepted
time: 0ms
memory: 26648kb
input:
43 50 ...........####################################### #########...###################################### #########...####....############################## ##########..#........############################# ##########...........############################# #####.....#....####...##########......#...
output:
5
result:
ok 1 number(s): "5"
Test #11:
score: 0
Accepted
time: 0ms
memory: 26536kb
input:
8 13 .##.......... .##..#######. .##......#.#. ...#.....#.#. ....###..#.#. ##..###..#.#. ##.......#.#. ##.......#.#.
output:
1
result:
ok 1 number(s): "1"
Test #12:
score: 0
Accepted
time: 0ms
memory: 26680kb
input:
36 25 ##....................... ......................... #........................ ......................... ......................... ......................... ......................... ......................... ......................... ..................#.....# ..............#.#..#..#.. ...........
output:
7
result:
ok 1 number(s): "7"
Test #13:
score: 0
Accepted
time: 0ms
memory: 26688kb
input:
30 20 ...............#.... .#......#...#.....#. .#...##..####..#..#. ...............#..#. .....##.##.##....... ....#........#...... ..#.#.........#..... .#.##......#..#..##. #.#........#........ ##.#.##.....#....... .......#.....####### ##......#.#......##. ....##..#....#..##.# #...##..###..#...#.# ...
output:
6
result:
ok 1 number(s): "6"
Test #14:
score: 0
Accepted
time: 6ms
memory: 26636kb
input:
1 50 ....#.#####.########.#.#...##..#..#..##.....##.#..
output:
25
result:
ok 1 number(s): "25"
Test #15:
score: 0
Accepted
time: 6ms
memory: 26596kb
input:
50 50 ....############################################## ##..############################################## ....############################################## ...#....########################################## ..#.....########################################## .....#..###############################...
output:
22
result:
ok 1 number(s): "22"
Test #16:
score: 0
Accepted
time: 4ms
memory: 26624kb
input:
40 50 ...###############################................ .....#############################...############. ##....############################..#############. ###...############################...############. ####...###########################...############. #####...###########################..##...
output:
9
result:
ok 1 number(s): "9"
Test #17:
score: 0
Accepted
time: 6ms
memory: 26572kb
input:
8 13 .##.......... .##..#######. .##......###. ...#.....###. ....###..###. ##..###..###. ##.......###. ##.......###.
output:
1
result:
ok 1 number(s): "1"
Test #18:
score: 0
Accepted
time: 0ms
memory: 26564kb
input:
10 15 ...#........... ............... .#............. ...#........... ......#.#.....# .....#.....#### ....#.....#.... ...#...#.#..... ...#........#.. ...##.......#..
output:
2
result:
ok 1 number(s): "2"
Test #19:
score: 0
Accepted
time: 0ms
memory: 26676kb
input:
50 3 .## .#. #.. ..# ..# #.. ### ... ### ... ### ##. ... ... ##. .#. #.. ... ##. ... #.. ..# ..# ..# ##. ..# ..# #.. .## ... ##. ..# ... ... ### ..# .#. #.# #.. .#. ### ### #.# #.# ### ..# ### ... #.. ..#
output:
21
result:
ok 1 number(s): "21"
Test #20:
score: 0
Accepted
time: 9ms
memory: 26764kb
input:
50 50 .##...#..########################......########### #######..########################......########### #######..########################..##..########### #######..########################..##.........#### ####.....########################....#.........### ####....#.....##############.....#....#...
output:
29
result:
ok 1 number(s): "29"
Test #21:
score: 0
Accepted
time: 0ms
memory: 26688kb
input:
20 30 .....####......####........... ###..####..##..####..########. ###..####..##.....#..####..##. .....####....#....#..####..##. ....#....#....##.....##....... .###......##..##.....##....... .###..##..##..#########..##### .###..##..##..######.....##### ......##..##..######....#..... .....#....##..#...
output:
6
result:
ok 1 number(s): "6"
Test #22:
score: 0
Accepted
time: 3ms
memory: 26728kb
input:
25 36 ....###########....................# ##..#############...##########....## ....#############....########....### ...#.....#########...########...#### .##......##########....######..##### .##..##..##########.....#####..##### .....##..###########......###....... ....#....#############.......#........
output:
11
result:
ok 1 number(s): "11"
Test #23:
score: 0
Accepted
time: 3ms
memory: 26640kb
input:
50 50 ##................................................ #################################################. ####.............................................. ####.............................................. ####..############################################ ####......................................
output:
3
result:
ok 1 number(s): "3"
Test #24:
score: 0
Accepted
time: 16ms
memory: 26620kb
input:
50 50 ################################################## ################################################## ################################################## ################################################## ################################################## #######################################...
output:
99
result:
ok 1 number(s): "99"
Test #25:
score: 0
Accepted
time: 0ms
memory: 26560kb
input:
50 50 ................#.....#....#..........#..#..#....# #...........#........#..................#......... ....#......#....#..........#...................... #...............#.##.....#..#...#.#.#.#...#...#... .........#..#..............#...........#....#..... .......##.....#.........##....##..........
output:
0
result:
ok 1 number(s): "0"
Test #26:
score: 0
Accepted
time: 3ms
memory: 26644kb
input:
4 2 #. #. ## ..
output:
2
result:
ok 1 number(s): "2"
Test #27:
score: 0
Accepted
time: 6ms
memory: 26560kb
input:
1 1 .
output:
0
result:
ok 1 number(s): "0"
Test #28:
score: 0
Accepted
time: 3ms
memory: 26636kb
input:
4 6 .##... .#.... ##.... ....#.
output:
1
result:
ok 1 number(s): "1"
Test #29:
score: 0
Accepted
time: 0ms
memory: 26612kb
input:
4 3 .## ### .#. #.#
output:
3
result:
ok 1 number(s): "3"
Test #30:
score: 0
Accepted
time: 6ms
memory: 26648kb
input:
2 2 .# #.
output:
1
result:
ok 1 number(s): "1"
Test #31:
score: 0
Accepted
time: 3ms
memory: 26632kb
input:
25 36 ....################################ ##..################################ ....################################ ...#.....########################### .##......########################### .##..##..########################### .....##..########################### ....#....##########################...
output:
10
result:
ok 1 number(s): "10"
Test #32:
score: 0
Accepted
time: 6ms
memory: 26732kb
input:
50 50 ..#.#####....##...#..##.##....###....##.##.####.#. ..#######...#..###..#....#..##..###.....##...#...# ..#.#..#........#..####..#######.##...##.###..#.#. ###.....#......#..#.##.#....##..#.#............... ....##.##...#.#....#.#####.......#..#.....##...##. ###..#..##..#..#.#...##..........#........
output:
29
result:
ok 1 number(s): "29"
Test #33:
score: 0
Accepted
time: 0ms
memory: 26684kb
input:
6 10 .##.....## .##..#.... .##...#... ...#...##. ....#..##. ##.....##.
output:
2
result:
ok 1 number(s): "2"
Test #34:
score: 0
Accepted
time: 5ms
memory: 26620kb
input:
18 13 #..#..#.#..#. ...#....##.## ###...#.#.... .###...#.#.#. ...###..#.#.. ..#.....####. ##...####.... ..####.#..... #####...#.... ..##.##....## .#....#..##.# #..#......### #.#.##...###. #..##.......# #.####..#...# #.#.#...#...# ...#.#.##.### ...#.#.###..#
output:
11
result:
ok 1 number(s): "11"
Test #35:
score: 0
Accepted
time: 6ms
memory: 26684kb
input:
45 50 ....#######...##################.......###........ ##..#######....#################..##...###..#####. ....########...#################..##..####..#####. ...#.....###############.....###..##........#####. .##......###############.....###....#......#....#. .##..##..###############..#.....#....##...
output:
24
result:
ok 1 number(s): "24"
Test #36:
score: 0
Accepted
time: 3ms
memory: 26660kb
input:
5 10 ..#.#.#.#. .#.####.#. ##...#...# ######.##. .###.###.#
output:
6
result:
ok 1 number(s): "6"
Test #37:
score: 0
Accepted
time: 7ms
memory: 26760kb
input:
45 50 ....#################...############......######## ##..#################...########............###### ....##################...###.........####....##### ...#.....############.....#......#########...##### .##......############..#......#############...#### .##..##..############...#..#..#########...
output:
24
result:
ok 1 number(s): "24"
Test #38:
score: 0
Accepted
time: 0ms
memory: 26620kb
input:
1 1 #
output:
1
result:
ok 1 number(s): "1"
Test #39:
score: 0
Accepted
time: 6ms
memory: 26688kb
input:
25 36 .....#################.............. ###..#################...##########. .....#################...##########. ....#......###########....#########. .###.......############........####. .###..###..#############........###. .###..###..##################...###. ......###..###################..###...
output:
8
result:
ok 1 number(s): "8"
Test #40:
score: 0
Accepted
time: 11ms
memory: 26668kb
input:
50 50 .#..#..##..#......####...##....##.##...###....#..# .....#.#..###....##..#####..##..###.##.##.#.#.#.## #.#..##.#..#....##..#..##...#.##..#########.#.##.# ###...#.#....##..##.###....#.##..#...####.#.####.# .#.#.#.#...#..#####.#.##..##.#.##..##.#....#####.. #.##.#.#####....###.###.......##..###.....
output:
43
result:
ok 1 number(s): "43"
Test #41:
score: 0
Accepted
time: 0ms
memory: 26560kb
input:
6 10 .#.....#.. ....#..##. ...#...### ###...#... .##..#.... ..#.....#.
output:
2
result:
ok 1 number(s): "2"
Test #42:
score: 0
Accepted
time: 0ms
memory: 26624kb
input:
43 50 ##...#............################################ ######.....................####################### ###############..................################# #########################...........############## ###############################.......############ ######....................#######.........
output:
6
result:
ok 1 number(s): "6"
Test #43:
score: 0
Accepted
time: 0ms
memory: 26712kb
input:
15 10 ....##.... ##..##..#. ##..##..#. ....##..#. ...#....#. .##.....#. .##..####. .##..####. .....####. ....#..... ####...... ####..#### ......#### ......#### ..........
output:
2
result:
ok 1 number(s): "2"
Test #44:
score: 0
Accepted
time: 0ms
memory: 26540kb
input:
30 30 ##...#####.....#.##..#.##.#### #.#...#.#.####.##.###..#.#..#. ##..#..#.#....#####..#..#..... .##.#.##..#...####..#..#..##.. #.####..##...##.#....#.###...# #.###.####.#....###.#...#.#... .#..#.#.##..#...##.......##.#. ...#.#.##.#.#.#.#.#####.#.#### ##.#....###..#.#..###....###.# .##.##.#..###.#...
output:
27
result:
ok 1 number(s): "27"
Test #45:
score: 0
Accepted
time: 0ms
memory: 26616kb
input:
50 50 ....#.#..#.......#..#...##......#.#....#....#...#. ...#..##....#.#.....##.#........###.....#......... .......#.#......#.#.....##.....#.#..........#.#... .#.......#...##.#......#.....#.#...##.##.....#.#.# ....#..#..............#.#..#....#..#......#.....#. ...#...#...#......##.....##.#.....#..#....
output:
22
result:
ok 1 number(s): "22"
Test #46:
score: 0
Accepted
time: 0ms
memory: 26608kb
input:
35 35 ##................................. .#.........................#.#..... ........#.................#....#... ...#....#...........#.............. ...#.##...#............##......#... ###.#.##..#........#..#........#... #.......##..##.#.#...##.#..##...... #.#.#.#.#..##......#.#..#....#..... ###.##...
output:
16
result:
ok 1 number(s): "16"
Test #47:
score: 0
Accepted
time: 3ms
memory: 26712kb
input:
36 25 .......................#. #.#....#.#.##.#........#. ..#.##.#.##.#..##..#.##.. ####............#..#..... #...##.......##.#..#..... ##.##.#..#...#.#......... .#.####..##......#.....#. ...#.##....#..........#.. ##.....#....#..#..##.#... .#......##...#.....#...#. .#...#...#...###.......#. .#..##.....
output:
11
result:
ok 1 number(s): "11"
Test #48:
score: 0
Accepted
time: 6ms
memory: 26668kb
input:
50 50 ####.#.#.###.#.##.....#.##.#.##.............#..#.. #....#.#..#..##.......#...........##.#......#..... ##.......##.##........#...#.###..##...##....#...## ........##.#.##.......#.#..##.#................... ..#.#......#.#.#...#..#........#......#..#........ ##.......##..###......##.#......#....##...
output:
27
result:
ok 1 number(s): "27"
Test #49:
score: 0
Accepted
time: 0ms
memory: 26712kb
input:
20 49 #..#.###.#...##..######..#..#.#.##.##....#..#.#.# #...##..####.##.####.#.#.#.##.#.#..#.######....#. .##.###.#.#..#####.####.#.##..###.##.####.##.#.## ...#.###....#######.#.#..#.....##.##..##.#...#.## .##..##.###.#.....###.....#.#..##.######...###### ##.#.##.#..##......###..#..#..##.##...##.###...
output:
32
result:
ok 1 number(s): "32"
Test #50:
score: 0
Accepted
time: 0ms
memory: 26636kb
input:
50 50 ###.....#.....#................................... .##..#..#..#..#..################################. .....#.....#.....################################. .....#.....#.....###.............................. ####################.............................. ####################..#################...
output:
3
result:
ok 1 number(s): "3"
Test #51:
score: 0
Accepted
time: 3ms
memory: 26684kb
input:
25 36 .......############################# #####..############################# #####..############################# .......############################# ......#.......###################### .#####........###################### .#####..####..###################### .#####..####..#####################...
output:
7
result:
ok 1 number(s): "7"
Test #52:
score: 0
Accepted
time: 8ms
memory: 26600kb
input:
40 50 #################..##################...########## #################..###############......########## #################..############.........########## ############################........############## ########################.........################# #####################.........#########...
output:
48
result:
ok 1 number(s): "48"
Test #53:
score: 0
Accepted
time: 7ms
memory: 26732kb
input:
50 50 .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#...
output:
49
result:
ok 1 number(s): "49"
Test #54:
score: 0
Accepted
time: 4ms
memory: 26636kb
input:
50 50 ######........................#............#...### #############################################..### #############################################..### ##############..#############################..### ##############....########....###############..### ##############......######......#######...
output:
32
result:
ok 1 number(s): "32"
Test #55:
score: 0
Accepted
time: 3ms
memory: 26560kb
input:
3 3 .#. ### .##
output:
3
result:
ok 1 number(s): "3"
Test #56:
score: 0
Accepted
time: 0ms
memory: 26728kb
input:
50 50 .#..#.......#.##...#..#....#..#.#.............#... #....#...#.#..........#..#.#.....#......#......... #.....##.#..#....###...............#...#.........# #........##..#...#..##..#..............#.#.#...... ##.#..................#.............#........#...# ..........#...###.#.#.....#.....#...#.....
output:
4
result:
ok 1 number(s): "4"
Test #57:
score: 0
Accepted
time: 3ms
memory: 26564kb
input:
20 30 ...#################.......... #..#################..#######. ...#################..##...... ...#################..##...... .###################..##..#### ...#################..##...... ...#################....#..... #..###########......#....####. ...###########.......##..####. ..#......#####....
output:
6
result:
ok 1 number(s): "6"
Test #58:
score: 0
Accepted
time: 4ms
memory: 26692kb
input:
40 50 #.....#####...........#############.........###### ####..#####.....####..############............#### ###...#####...######..###########....#####.....### ###...####...####.....##########....########....## ##...#####...####....#.............##########...## ##...#####...####..##.............#####...
output:
9
result:
ok 1 number(s): "9"
Test #59:
score: 0
Accepted
time: 0ms
memory: 26664kb
input:
50 43 .#####..################################### .####...################################### .#####..#############......################ .##################...........############# .################.......#.......########### .###############......####.#.....########## ..#############....###########...
output:
6
result:
ok 1 number(s): "6"
Test #60:
score: 0
Accepted
time: 6ms
memory: 26636kb
input:
50 50 #####...........####.##.###########....#..#.#....# #..##..##.##...#####.##.###..###.#..#...#.......#. .#......####.##.#####.#..#..#.###..#..#...#....... ...#############.......#.####.#.........#......... #.#.###.....#####....##..#..###.........#......... ##.#..#..#..#...#......###...#..#..#.##...
output:
32
result:
ok 1 number(s): "32"
Test #61:
score: 0
Accepted
time: 5ms
memory: 26636kb
input:
50 50 ####............############..####.##########..#.# ##..###.#.##.#.##.#.########.#..###.#########.#### #.##.###.#####.#.#.#####.##.#####...##.########.## ###..####.######.##..####.#..##.........#......... #.######.#..#...#######.#######.........#......... ..###...##..#.###.####.##.###...##...##...
output:
31
result:
ok 1 number(s): "31"
Test #62:
score: 0
Accepted
time: 3ms
memory: 26616kb
input:
50 43 ....#############...#.###.##.#............. ...###...#.###......#.#..#................. ...#####.###..#..###..#.#..#............... ##########.#........#....#................. ####....#..#..##.#...#...#.#............... ####......#..##.#..#.#....#................ ###.......##..#.....#..##...#....
output:
38
result:
ok 1 number(s): "38"
Test #63:
score: 0
Accepted
time: 7ms
memory: 26652kb
input:
50 50 #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.# #.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#. .#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#....
output:
50
result:
ok 1 number(s): "50"
Test #64:
score: 0
Accepted
time: 9ms
memory: 26600kb
input:
50 50 ######........................#............#...### #############################################..### #############################################..### #############################################..### #############################################..### #######################################...
output:
31
result:
ok 1 number(s): "31"
Test #65:
score: 0
Accepted
time: 6ms
memory: 26728kb
input:
4 6 .##... .#.... ##.... #...#.
output:
2
result:
ok 1 number(s): "2"
Test #66:
score: 0
Accepted
time: 0ms
memory: 26568kb
input:
50 50 ..##.#....#.........#...#..#.....#...##.#.....#... ........#..#.#............#....#.#......#...#..... .#....#.#.......#..#..#.....................##..#. #..........#.#.###.#.....#...#........#.#.....#.#. .....#####.##....#...##..#.......#...#...##....#.. ....##.#.#..##..#...#.#...............#...
output:
13
result:
ok 1 number(s): "13"
Test #67:
score: 0
Accepted
time: 9ms
memory: 26684kb
input:
43 50 .#################################................ ##################################................ ##################################..############.. ##################################..############.. #..###############################..#############. #..###############################........
output:
38
result:
ok 1 number(s): "38"
Test #68:
score: 0
Accepted
time: 3ms
memory: 26728kb
input:
15 10 .......... #########. .......... .......... .######### .......... .......... #########. ......###. ......###. .###..###. .###...... .###...... .######### ..........
output:
0
result:
ok 1 number(s): "0"
Test #69:
score: 0
Accepted
time: 0ms
memory: 26560kb
input:
11 18 ##....##..####...# ##.##..##..##.#.#. ...##.#.##..#.##.# #...########...### ..#.##.#.#.##.#.## #####....#..###.## .###...#.##.##.#.. #..##.#.#####..#.. ####..#..####..### #.#..###.#.##.#### .#.###.#.##.##....
output:
15
result:
ok 1 number(s): "15"
Test #70:
score: 0
Accepted
time: 3ms
memory: 26628kb
input:
36 25 .#....................... ....#####..#.#.#######... .....############..##.##. ####.#.#.###..##.##.###.. .#####.####...........#.. #.##.##...............##. #............#.###...###. .#......#.#########..###. ##...##.##..##.####..###. #...#########.....#...#.. ##..#.#..##..#.##........ .#..##.#...
output:
8
result:
ok 1 number(s): "8"
Test #71:
score: 0
Accepted
time: 3ms
memory: 26688kb
input:
50 40 .#.##.##..#.#........................... ###..##.####.......#####.#####.#.#..#... .#######.#.#....##...###.##.#.#######.#. ###.#######...###..####.########.#####.. ..####.##......####.########.####.##.##. .###..###....#####.####.#.#.##.######... ..#####.##..#.##.###.###........##..###. .#...##...
output:
9
result:
ok 1 number(s): "9"
Test #72:
score: 0
Accepted
time: 0ms
memory: 26660kb
input:
50 43 .#......#.#..#.####..#.#.#.....#.#.#.#..... ..#....##.###.##..###.#.#..#......#..#....# ..###...#.#....##...##.....#.#######...#.## ..#......##.##....##.####..##.#.###.#.#..#. ...###.#..###....#....#.#....#.#.####..#### .....#.#..##...##..#..#..........##.#....## ....#....#####..####...#.........
output:
5
result:
ok 1 number(s): "5"
Test #73:
score: 0
Accepted
time: 7ms
memory: 26624kb
input:
50 50 #.##.....#............###.##...........#.....#.... ..##..#..#..####.###..#.####..#.....#............. ..##..#..#..#.........###.##..#..#.....#..#..#..#. .#.#..#...............###.##..#..#..#.....#..#..#. .##......#........#..#.##..#..#..#..#..#.......... ..#......#..##..############........#.....
output:
7
result:
ok 1 number(s): "7"
Test #74:
score: 0
Accepted
time: 3ms
memory: 26732kb
input:
36 25 .......................#. ##....##.#.##.#....#.#... ....#.#..#...#....#.#.... #..#..........#......##.. .................#......# ##...........##.........# ....#.#..##...........#.. #.###.#....#.........#..# .......#....##...#.#...## ........##......#.#.....# .#..##...#....##...#.#.#. #....#.....
output:
10
result:
ok 1 number(s): "10"
Test #75:
score: 0
Accepted
time: 11ms
memory: 26648kb
input:
44 50 .##.#..#.##..##......#.##.##....##.#.#####.#..#### ...#.########..##..#.#.#...#.#####.#......#.#.#### .#..#...#....####..........####...####........#.## #.#.#....#...##.##.###.#....#..###.#.....##...###. #.######......#..#.##.##.#.....###.##..#####...##. .....#.###...##.#.##.####...####.######...
output:
42
result:
ok 1 number(s): "42"
Test #76:
score: 0
Accepted
time: 8ms
memory: 26668kb
input:
50 50 ....############.....######......########....##### ##..###########....######.....##########....###### ....##########....#####......##########....###...# ...#....####....#####......###...#####....###....# ..#.....##.....#####.....###.....###....####....## .....#..#.....#####....###......###.......
output:
19
result:
ok 1 number(s): "19"
Extra Test:
score: 0
Extra Test Passed