QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#510144 | #7733. Cool, It’s Yesterday Four Times More | CMing | WA | 1ms | 3812kb | C++17 | 1.9kb | 2024-08-08 21:29:51 | 2024-08-08 21:29:51 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int n, m;
int d[4][2] = {{-1, 0}, {0, 1}, {1, 0}, {0, -1}};
vector<vector<vector<vector<int>>>> f;
const int N = 1e3 + 5;
bool st[N][N];
string g[N];
bool dp(int x, int y, int u, int v)
{
if(g[x][y] == 'O') return false;
if(u < 0 || u >= n || v < 0 || v >= m) return true;
if(g[u][v] == 'O') return true;
if(f[x][y][u][v] != -1) return f[x][y][u][v];
st[x * n + y][u * n + v] = true;
bool flag = false;
for(int i = 0; i < 4; i++)
{
int tx = x + d[i][0], ty = y + d[i][1];
int tu = u + d[i][0], tv = v + d[i][1];
if(tx < 0 || tx >= n || ty < 0 || ty >= m) continue;
if(tu >= 0 && tu < n && tv >= 0 && tv < m && st[tx * n + ty][tu * n + tv]) continue;
if(g[tx][ty] == 'O') continue;
if(dp(tx, ty, tu, tv))
{
flag = true;
break;
}
}
st[x * n + y][u * n + v] = false;
return f[x][y][u][v] = flag;
}
void solve()
{
cin >> n >> m;
f.clear();
f.resize(n, vector<vector<vector<int>>>(m, vector<vector<int>>(n, vector<int>(m, -1))));
for(int i = 0; i < n; i++) cin >> g[i];
int ans = 0;
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
{
bool flag = true;
for(int u = 0; u < n; u++)
{
if(!flag) break;
for(int v = 0; v < m; v++)
{
if(u == i && v == j) continue;
if(!dp(i, j, u, v))
{
flag = false;
break;
}
}
}
if(flag)
{
// cout << i << " " << j << "\n";
ans++;
}
}
cout << ans << "\n";
}
int main()
{
int t = 1;
cin >> t;
while(t--)
{
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3776kb
input:
4 2 5 .OO.. O..O. 1 3 O.O 1 3 .O. 2 3 OOO OOO
output:
3 1 0 0
result:
ok 4 lines
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 3812kb
input:
200 2 4 OOO. OO.. 2 3 OOO .O. 3 3 O.O OOO OO. 4 1 . . O O 1 2 .O 1 1 . 2 5 .OO.. .O.O. 2 1 O O 1 1 O 1 3 .OO 5 1 O O . O . 5 2 O. .. O. .O .. 5 3 ... ... .OO ..O OOO 3 5 ..O.O .O.O. .OO.O 5 2 .O OO O. O. .. 2 1 O O 3 5 .O.OO O...O ..OO. 1 5 ..... 5 1 O . O . . 5 3 OOO OO. .OO OO. O.O 2 1 O . 5 2 O. ...
output:
3 0 0 2 1 1 2 0 1 1 0 7 9 4 4 0 6 2 2 0 1 6 3 5 2 0 0 5 3 3 1 2 1 1 7 2 2 2 5 3 0 6 2 2 2 0 4 6 5 3 3 2 3 4 2 1 0 3 3 3 3 2 2 0 7 6 4 8 5 3 2 4 2 1 2 1 2 1 0 2 5 1 3 6 6 1 5 2 2 2 4 5 2 1 0 1 8 3 4 11 0 3 2 1 0 0 2 3 1 4 2 8 3 0 3 6 2 5 1 3 3 2 1 2 10 2 2 4 0 2 4 4 2 1 2 2 1 5 0 16 4 3 2 5 0 8 3 3 1...
result:
wrong answer 7th lines differ - expected: '3', found: '2'