QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#739192 | #7733. Cool, It’s Yesterday Four Times More | dddfff | WA | 2ms | 5904kb | C++23 | 3.3kb | 2024-11-12 21:07:31 | 2024-11-12 21:07:35 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
typedef pair<int, int> PII;
const int N = 1e3 + 10;
const int mod = 1e9 + 7;
const int INF = 0x3f3f3f3f;
int T;
int n, m, cnt;
int a[N][N];
bool vis[N][N], notlive[N][N];
vector<PII> g[N * N];
char x;
int dx[] = {-1, 0, 1, 0};
int dy[] = {0, 1, 0, -1};
void BFS(int x, int y, int cnt)
{
vis[x][y] = 1;
g[cnt].push_back({x, y});
queue<PII> q;
q.push({x, y});
while (q.size())
{
int x = q.front().first;
int y = q.front().second;
q.pop();
for (int i = 0; i < 4; i++)
{
int tx = x + dx[i];
int ty = y + dy[i];
if (tx < 1 || tx > n || ty < 1 || ty > m)
{
continue;
}
if (a[tx][ty] && !vis[tx][ty])
{
g[cnt].push_back({tx, ty});
vis[tx][ty] = 1;
q.push({tx, ty});
}
}
}
}
void solve()
{
// code
cin >> n >> m;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= m; j++)
{
cin >> x;
if (x == '.')
{
a[i][j] = 1;
}
else
{
a[i][j] = 0;
}
g[(i - 1) * m + j].clear();
}
}
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= m; j++)
{
if (!vis[i][j] && a[i][j])
{
cnt++;
BFS(i, j, cnt);
}
}
}
int ans = 0;
for (int i = 1; i <= cnt; i++)
{
int nx = g[i][0].first, ny = g[i][0].second;
for (int j = 1; j < g[i].size(); j++)
{
int tx = g[i][j].first - nx;
int ty = g[i][j].second - ny;
for (int k = 1; k <= cnt; k++)
{
if (i == k)
continue;
for (auto i : g[k])
{
int nex = i.first;
int ney = i.second;
int nnex = nex + tx;
int nney = ney + ty;
if (!notlive[nex][ney])
{
if (nnex < 1 || nnex > n || nney < 1 || nney > m || a[nnex][nney] == 0)
{
notlive[nex][ney] = 1;
}
}
}
}
}
bool flag = 1;
for (int k = 1; k <= cnt; k++)
{
if (i == k)
continue;
for (auto i : g[k])
{
int nex = i.first;
int ney = i.second;
if (!notlive[nex][ney])
{
flag = 0;
}
}
for (auto i : g[k])
{
notlive[i.first][i.second] = 0;
}
}
if (flag)
ans += g[i].size();
}
cout << ans << '\n';
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int T = 1;
cin >> T;
while (T--)
{
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 2ms
memory: 5904kb
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: 2ms
memory: 5684kb
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 1 0 1 1 1 2 2 2 2 2 0 0 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 ...
result:
wrong answer 2nd lines differ - expected: '0', found: '1'