QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#100872 | #4434. Lemurs | lonytree# | AC ✓ | 429ms | 12460kb | C++14 | 1.5kb | 2023-04-28 15:07:27 | 2023-04-28 15:07:31 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std; const int maxn = 1e3 + 5;
int n, m, k;
char s[maxn][maxn];
int f[maxn][maxn], g[maxn][maxn];
inline void solve()
{
scanf("%d%d%d", &n, &m, &k);
for (int i = 1; i <= n; i++) scanf("%s", s[i] + 1);
for (int i = 0; i <= n + 1; i++) for (int j = 0; j <= m + 1; j++) f[i][j] = g[i][j] = 1e9;
for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) if (s[i][j] == '.') f[i][j] = 0;
for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) f[i][j] = min(f[i][j], f[i][j - 1] + 1);
for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) f[i][j] = min(f[i][j], f[i - 1][j] + 1);
for (int i = n; i; i--) for (int j = m; j; j--) f[i][j] = min(f[i][j], f[i + 1][j] + 1);
for (int i = n; i; i--) for (int j = m; j; j--) f[i][j] = min(f[i][j], f[i][j + 1] + 1);
for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) if (f[i][j] > k) g[i][j] = 0;
for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) g[i][j] = min(g[i][j], g[i][j - 1] + 1);
for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) g[i][j] = min(g[i][j], g[i - 1][j] + 1);
for (int i = n; i; i--) for (int j = m; j; j--) g[i][j] = min(g[i][j], g[i + 1][j] + 1);
for (int i = n; i; i--) for (int j = m; j; j--) g[i][j] = min(g[i][j], g[i][j + 1] + 1);
for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) if (s[i][j] == 'x' && g[i][j] > k) { puts("NIE"); return; }
puts("TAK");
}
int main()
{
int z; scanf("%d", &z); while (z--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 6ms
memory: 12460kb
input:
4000 1 1 1 . 1 1 1 x 1 1 1000 . 1 1 1000 x 1 1000 4 ..........................................xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx....xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
output:
TAK TAK TAK TAK TAK NIE NIE TAK NIE TAK NIE NIE TAK TAK NIE TAK TAK NIE NIE NIE NIE NIE NIE NIE NIE NIE TAK NIE NIE TAK TAK TAK NIE NIE NIE TAK TAK NIE NIE TAK NIE NIE NIE TAK NIE NIE NIE TAK NIE NIE NIE NIE TAK NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE TAK NIE NIE NIE TAK TAK ...
result:
ok 4000 lines
Test #2:
score: 0
Accepted
time: 355ms
memory: 12280kb
input:
36 1000 1000 2 ....xxxx..............xxxxxx..........xx..xxxx......xxxxxxxxxxx.........xxxxxxxxxx...xxxxxx....xxxxxx.......xxxxxx....xxxxxx......................................xx.............xxxxxxxxx......xxxxxxx................xxxxxx..xxxxxx....xxxxxx..............xxxxxxxxxxxxxxxxxxxxxxxxxxxx...x...
output:
TAK NIE NIE TAK TAK NIE TAK NIE NIE TAK TAK NIE NIE NIE NIE TAK NIE TAK TAK TAK TAK NIE TAK NIE NIE TAK NIE TAK NIE NIE NIE TAK TAK NIE NIE NIE
result:
ok 36 lines
Test #3:
score: 0
Accepted
time: 429ms
memory: 12164kb
input:
41 1000 1000 999 .xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
output:
NIE TAK TAK NIE TAK TAK TAK NIE TAK NIE TAK TAK TAK NIE TAK NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE TAK NIE TAK NIE NIE NIE NIE TAK TAK NIE NIE NIE TAK NIE NIE NIE
result:
ok 41 lines
Extra Test:
score: 0
Extra Test Passed